/* style.css - Unificado dos HTMLs */

/* HEADER E NAVEGAÇÃO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffd700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* MOBILE NAV */
.mobile-nav {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 10000;
    padding: 0.5rem 0;
    will-change: transform;
    backface-visibility: hidden;
    touch-action: manipulation;
    height: 80px;
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #94a3b8;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
    min-width: 60px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.mobile-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    body,
    .container,
    .section-header,
    .section-title,
    .section-subtitle,
    p,
    h1, h2, h3, h4, h5, h6,
    .form-title,
    .form-subtitle,
    .contact-hero-content,
    .contact-form-container,
    .info-card,
    .map-header,
    .footer-content,
    .footer-section,
    .footer-bottom,
    .story-content,
    .team-member,
    .stat-item,
    .social-header,
    .social-tab,
    .social-feed,
    .cta-content,
    .cta-title,
    .cta-subtitle,
    .cta-buttons {
        text-align: center !important;
    }
    .nav-links {
        display: none;
    }
    .mobile-nav {
        display: block;
    }
    body {
        padding-bottom: 80px;
        padding-top: 80px;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

/* --- RESTANTE DO CSS DAS SEÇÕES (hero, services, etc) --- */
/* (Aqui entraria o CSS das seções específicas de cada página, que pode ser expandido conforme necessário) */

/* === CSS EXCLUSIVO SOBRE.HTML === */

/* Header, Hero, Story, Team, Stats, Social, CTA, Footer, Animations, Responsivo */
.about-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
}
.floating-elements {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none;
}
.floating-number {
    position: absolute; font-size: 8rem; font-weight: 900; color: rgba(255, 215, 0, 0.1); animation: floatNumber 12s ease-in-out infinite;
}
.number-1 { top: 10%; left: 5%; animation-delay: 0s; }
.number-2 { top: 50%; right: 10%; animation-delay: 4s; }
.number-3 { bottom: 20%; left: 15%; animation-delay: 8s; }
.hero-content { max-width: 800px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 1.5rem; background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: titleShimmer 3s ease-in-out infinite, fadeInUp 1.5s ease; }
.hero-subtitle { font-size: 1.3rem; color: #cbd5e1; animation: fadeInUp 1.5s ease 0.5s both; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.story-section { padding: 8rem 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); position: relative; overflow: hidden; }
.story-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%); animation: sectionGlow 15s ease-in-out infinite; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; position: relative; z-index: 2; }
.story-content { animation: slideInLeft 1.2s ease; }
.story-content h2 { font-size: 2.8rem; font-weight: 800; color: #0f172a; margin-bottom: 2rem; position: relative; }
.story-content h2::before { content: ''; position: absolute; left: -30px; top: 50%; transform: translateY(-50%); width: 6px; height: 60px; background: linear-gradient(135deg, #ffd700, #ffb700); border-radius: 3px; animation: lineGrow 1.5s ease 0.5s both; }
.story-text { font-size: 1.2rem; color: #64748b; line-height: 1.8; margin-bottom: 2rem; }
.story-highlight { background: linear-gradient(135deg, #ffd700, #ffb700); color: #0f172a; padding: 2rem; border-radius: 20px; margin-top: 2rem; position: relative; animation: slideUp 1s ease 0.3s both; }
.story-highlight::before { content: '"'; position: absolute; top: -20px; left: 20px; font-size: 4rem; font-weight: 900; color: #ffd700; opacity: 0.3; }
.story-visual { perspective: 1000px; animation: slideInRight 1.2s ease; }
.visual-container { position: relative; transform-style: preserve-3d; animation: visualFloat 6s ease-in-out infinite; }
.visual-card { background: white; padding: 3rem; border-radius: 25px; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15); border: 1px solid rgba(255, 215, 0, 0.2); position: relative; overflow: hidden; }
.visual-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #ffd700, #ffb700, #ffd700); background-size: 200% 100%; animation: topShimmer 2s linear infinite; }
.milestone-item { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; animation: milestoneReveal 0.8s ease both; }
.milestone-item:nth-child(1) { animation-delay: 0.2s; }
.milestone-item:nth-child(2) { animation-delay: 0.4s; }
.milestone-item:nth-child(3) { animation-delay: 0.6s; }
.milestone-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #ffd700, #ffb700); border-radius: 15px; display: flex; align-items: center; justify-content: center; color: black; font-size: 1.5rem; animation: iconPulse 2s ease-in-out infinite; }
.milestone-text h4 { font-size: 1.3rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.milestone-text p { color: #64748b; font-size: 0.9rem; }
.team-section { padding: 8rem 0; background: white; position: relative; }
.team-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.03) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.02) 0%, transparent 50%); animation: teamBg 20s ease-in-out infinite; }
.section-header { text-align: center; margin-bottom: 5rem; position: relative; z-index: 2; }
.section-title { font-size: 3rem; font-weight: 800; color: #0f172a; margin-bottom: 1.5rem; animation: textGlow 3s ease-in-out infinite; }
.section-subtitle { font-size: 1.2rem; color: #64748b; max-width: 600px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; position: relative; z-index: 2; }
.team-member { background: white; padding: 2.5rem; border-radius: 25px; box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1); text-align: center; transition: all 0.4s ease; border: 1px solid rgba(255, 215, 0, 0.1); position: relative; overflow: hidden; animation: teamRise 0.8s ease both; }
.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.3s; }
.team-member:nth-child(3) { animation-delay: 0.5s; }
.team-member::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent); transition: left 0.6s ease; }
.team-member:hover { transform: translateY(-10px); box-shadow: 0 25px 70px rgba(255, 215, 0, 0.2); }
.team-member:hover::before { left: 100%; }
.team-avatar { width: 120px; height: 120px; background: linear-gradient(135deg, #ffd700, #ffb700); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 3rem; color: black; animation: avatarFloat 4s ease-in-out infinite; }
.team-member:nth-child(2) .team-avatar { animation-delay: 1s; }
.team-member:nth-child(3) .team-avatar { animation-delay: 2s; }
.team-name { font-size: 1.4rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.team-role { color: #ffd700; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.team-bio { color: #64748b; line-height: 1.6; }
.stats-section { padding: 6rem 0; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: white; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%); animation: statsGlow 12s ease-in-out infinite; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; text-align: center; position: relative; z-index: 2; }
.stat-item { animation: statRise 0.8s ease both; }
.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.5s; }
.stat-item:nth-child(4) { animation-delay: 0.7s; }
.stat-number { font-size: 3.5rem; font-weight: 900; background: linear-gradient(135deg, #ffd700, #ffb700); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; animation: numberCount 2s ease 1s both; }
.stat-label { color: #cbd5e1; font-weight: 500; font-size: 1.1rem; }
.social-section { padding: 8rem 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); position: relative; overflow: hidden; }
.social-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%); animation: socialGlow 10s ease-in-out infinite; }
.social-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 2; }
.social-header h2 { font-size: 2.8rem; font-weight: 800; color: #0f172a; margin-bottom: 1rem; animation: socialTitle 1s ease; }
.social-tabs { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; position: relative; z-index: 2; }
.social-tab { padding: 1rem 2rem; background: white; border: 2px solid #e5e7eb; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.social-tab.active { background: linear-gradient(135deg, #ffd700, #ffb700); color: black; border-color: #ffd700; }
.social-tab:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.social-feed { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; position: relative; z-index: 2; }
.social-post { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; animation: postSlide 0.6s ease both; }
.social-post:nth-child(1) { animation-delay: 0.1s; }
.social-post:nth-child(2) { animation-delay: 0.2s; }
.social-post:nth-child(3) { animation-delay: 0.3s; }
.social-post:nth-child(4) { animation-delay: 0.4s; }
.social-post:nth-child(5) { animation-delay: 0.5s; }
.social-post:nth-child(6) { animation-delay: 0.6s; }
.social-post:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2); }
.post-header { padding: 1.5rem; border-bottom: 1px solid #f1f5f9; display: flex; align-items: center; gap: 1rem; }
.post-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, #ffd700, #ffb700); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: black; }
.post-info h4 { font-size: 1rem; font-weight: 600; color: #0f172a; }
.post-info p { font-size: 0.8rem; color: #64748b; }
.post-image { width: 100%; height: 200px; background: linear-gradient(45deg, #ffd700, #ffb700); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(0, 0, 0, 0.3); }
.post-content { padding: 1.5rem; }
.post-text { color: #374151; line-height: 1.6; margin-bottom: 1rem; }
.post-stats { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: #64748b; }
.post-likes { display: flex; align-items: center; gap: 0.5rem; }
.social-feed.facebook .social-post { border-left: 4px solid #1877f2; }
.social-feed.instagram .social-post { border-left: 4px solid #e4405f; }
.cta-section { padding: 6rem 0; background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%); color: black; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff20" points="0,0 1000,300 1000,1000 0,700"/></svg>'); background-size: cover; animation: ctaWave 8s ease-in-out infinite; }
.cta-content { position: relative; z-index: 2; }
.cta-title { font-size: 2.8rem; font-weight: 800; margin-bottom: 1.5rem; animation: ctaTitleAnim 2s ease; }
.cta-subtitle { font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9; }
.cta-buttons { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: #0f172a; color: white; padding: 1.2rem 3rem; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all 0.4s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(15, 23, 42, 0.3); }
.btn-secondary { background: transparent; color: #0f172a; padding: 1.2rem 3rem; border: 3px solid #0f172a; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all 0.4s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-secondary:hover { background: #0f172a; color: white; transform: translateY(-3px); }
footer { background: #0f172a; color: white; padding: 3rem 0 1rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; color: #ffd700; }
.footer-section p, .footer-section a { color: #cbd5e1; text-decoration: none; margin-bottom: 0.5rem; display: block; transition: color 0.3s ease; }
.footer-section a:hover { color: #ffd700; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #334155; color: #94a3b8; }

/* Animations */
@keyframes heroGlow { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }
@keyframes floatNumber { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-30px) rotate(5deg); } }
@keyframes titleShimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sectionGlow { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-100px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lineGrow { from { height: 0; } to { height: 60px; } }
@keyframes visualFloat { 0%, 100% { transform: rotateY(-3deg) rotateX(2deg) translateZ(0); } 50% { transform: rotateY(3deg) rotateX(-2deg) translateZ(10px); } }
@keyframes topShimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes milestoneReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes iconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes teamBg { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, 15px); } }
@keyframes textGlow { 0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); } 50% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.6); } }
@keyframes teamRise { from { opacity: 0; transform: translateY(50px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes avatarFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes statsGlow { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }
@keyframes statRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes numberCount { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
@keyframes socialGlow { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }
@keyframes socialTitle { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes postSlide { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes ctaWave { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(15px); } }
@keyframes ctaTitleAnim { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .visual-container { transform: none; }
    .team-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .social-tabs { flex-direction: column; align-items: center; }
    .social-feed { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .hero-content { padding: 0 1rem; }
    .container { padding: 0 1rem; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .team-member { padding: 2rem; }
    .stats-grid { grid-template-columns: 1fr; }
}

html, body {
    overflow-x: hidden;
} 