/* --- Variáveis --- */
:root {
    --bg-color: #050505;
    --card-bg: #101010;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --primary-teal: #00c9b1;   
    --primary-teal-dim: rgba(0, 201, 177, 0.15); 
    --primary-teal-glow: rgba(0, 201, 177, 0.4);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; position: relative; }

/* Fundo Animado */
.animated-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
    background: linear-gradient(-45deg, #050505, #080f0e, #021211, #000000);
    background-size: 400% 400%; animation: gradientMove 15s ease infinite;
}
@keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Tipografia */
h1, h2, h3 { color: var(--heading-color); font-weight: 700; margin-bottom: 1rem; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; display: block; }
.highlight { color: var(--primary-teal); text-shadow: 0 0 10px rgba(0, 201, 177, 0.3); }


header {
    background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(10px);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 10px 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 58px; display: block; }

#menu { display: flex; gap: 1.5rem; align-items: center; }
#menu a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: #fff; transition: 0.3s; }
#menu a:hover { color: var(--primary-teal); }

.btn-nav {
    border: 1px solid var(--primary-teal); padding: 8px 20px; border-radius: 4px; color: var(--primary-teal) !important;
}
.btn-nav:hover { background: var(--primary-teal); color: #000 !important; }

/* Redes Sociais Header */
.social-icons-header {
    display: flex; gap: 15px; margin-left: 20px; padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2); align-items: center;
}
.social-icons-header a i { font-size: 1.8rem; color: white; transition: 0.3s; }
.social-icons-header a:hover i { color: var(--primary-teal); transform: scale(1.1); }
.mobile-social { display: none; } 

#btn-mobile { display: none; }


.hero {
    position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden; padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 12%; filter: brightness(0.5);
}
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(5,5,5,0.8) 100%); }
.hero-content { z-index: 10; max-width: 900px; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; }


.btn-primary {
    display: inline-block; background-color: var(--primary-teal); color: #000;
    padding: 14px 35px; border-radius: 5px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 0 20px var(--primary-teal-glow); border: 2px solid var(--primary-teal); margin-top: 1rem; transition: 0.3s;
}
.btn-primary:hover { background: transparent; color: var(--primary-teal); box-shadow: 0 0 35px var(--primary-teal); transform: translateY(-3px); }


.stats-section { padding: 4rem 0; background: rgba(0, 0, 0, 0.3); border-bottom: 1px solid rgba(255,255,255,0.05); }
.grid-3-stats { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 2rem; }
.glow-text {
    font-size: 3.5rem; color: var(--primary-teal);
    text-shadow: 0 0 20px var(--primary-teal-glow), 0 0 40px var(--primary-teal-dim);
    margin-bottom: 0.5rem;
}
.stat-item p { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; color: #fff; font-weight: 600; }


.grid-3, .grid-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.services, .features, .why-us { padding: 5rem 0; }


.service-card, .feature-card, .why-card {
    background: rgba(16, 20, 20, 0.6); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px; transition: 0.3s; position: relative; overflow: hidden;
}
.service-card:hover { border-color: var(--primary-teal); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 201, 177, 0.1); }


.icon-circle {
    width: 70px; height: 70px; background: var(--primary-teal-dim);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; box-shadow: 0 0 20px var(--primary-teal-dim);
    border: 1px solid rgba(0, 201, 177, 0.3);
}

.icon-circle i {
    font-size: 2rem;
    color: var(--primary-teal);
    transition: transform 0.6s ease-in-out;
}

.service-card:hover .icon-circle i {
    transform: rotate(360deg);
}

.icon-feature { font-size: 2.5rem; color: var(--primary-teal); margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 1rem; font-size: 1.3rem; color: #fff; }


.service-text-wrapper { margin-bottom: 1.5rem; flex-grow: 1; }
.summary { font-size: 0.95rem; color: #ccc; transition: opacity 0.3s ease; }
.service-card.active .summary { opacity: 0.5; }
.full-text { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s ease, opacity 0.5s ease; }
.service-card.active .full-text { max-height: 500px; opacity: 1; margin-top: 1rem; }

.read-more-btn {
    margin-top: 2rem; padding: 10px 25px; background: transparent;
    border: 1px solid var(--primary-teal); border-radius: 50px; font-size: 0.8rem;
    color: var(--primary-teal); font-weight: 700; text-transform: uppercase;
    cursor: pointer; display: inline-block; transition: 0.3s;
}
.read-more-btn:hover, .service-card.active .read-more-btn {
    background: var(--primary-teal); color: #000; box-shadow: 0 0 15px var(--primary-teal-glow);
}


.about-split { padding: 6rem 0; }
.split-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
}

.about-text-side h2 { 
    font-size: 3rem; 
    line-height: 1.2; 
    margin-bottom: 1.5rem; 
    text-align: left; 
}
.about-text-side p { 
    color: #ccc; 
    margin-bottom: 1rem; 
    font-size: 1rem; 
    text-align: left; 
}


.quote-box {
    background: rgba(16, 22, 22, 0.6); 
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    border-right: 4px solid var(--primary-teal); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.quote-box p {
    font-style: italic;
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quote-box cite {
    display: block;
    text-align: right;
    color: var(--primary-teal);
    font-weight: 700;
    font-style: normal;
}




.final-banner-section {
    padding: 4rem 0 6rem;
    text-align: center;
}

.banner-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
    perspective: 1000px;
    padding: 0 20px; 
}

.banner-frame {
    position: relative;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, var(--primary-teal), transparent);
    background-size: 200% 200%;
    animation: borderFlow 4s ease infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    
    
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    width: 100%;
}

@keyframes borderFlow { 
    0% { background-position: 0% 50%; } 
    50% { background-position: 100% 50%; } 
    100% { background-position: 0% 50%; } 
}

.banner-frame img { 
    display: block; 
    width: 100%; 
    height: 100%; 
    border-radius: 12px; 
    background-color: #000; 
    
    
    object-fit: cover; 
    object-position: center center; 
}

.banner-glow {
    position: absolute; top: 55%; left: 50%; transform: translate(-50%, -50%);
    width: 85%; height: 70%; background: var(--primary-teal); filter: blur(120px); opacity: 0.15; z-index: -1;
}

/* Responsividade do Banner (Celular e Tablet) */
@media (max-width: 768px) {
    .banner-wrapper {
        padding: 0 15px;
    }
    .banner-frame {
        
        aspect-ratio: 4 / 5; 
    }
}


.cta-footer { 
    padding: 6rem 0; 
    text-align: center; 
    background: radial-gradient(circle at center, rgba(0, 201, 177, 0.1) 0%, transparent 70%); 
}

footer { 
    padding: 2rem 0; 
    border-top: 1px solid #1a1a1a; 
    text-align: center; 
    font-size: 0.9rem; 
    color: #666; 
    background: #050505; 
}




.spotlight-card { position: relative; overflow: hidden; }
.spotlight-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: 1; pointer-events: none;
}
.card-content { position: relative; z-index: 2; padding: 2.5rem; height: 100%; display: flex; flex-direction: column; }


@media (max-width: 768px) {
    .hero { min-height: 70vh; }
    .hero-bg img { object-position: center top; }
    .hero h1 { font-size: 2.2rem; }
    
    .grid-3-stats { grid-template-columns: 1fr; gap: 3rem; }
    .glow-text { font-size: 3rem; }

    
    .split-container { grid-template-columns: 1fr; gap: 3rem; }
    .about-text-side h2 { font-size: 2.2rem; text-align: center; }
    .about-text-side p { text-align: center; }

    .nav-container { padding: 0 20px; }
    header { background: rgba(5, 5, 5, 0.98); }
    .logo-img { height: 52px; }
    
    #menu {
        display: block; position: absolute; width: 100%; top: 70px; right: 0;
        background: rgba(5, 5, 5, 0.98); height: 0; transition: 0.6s; z-index: 1000;
        visibility: hidden; overflow-y: hidden; border-bottom: 2px solid var(--primary-teal);
        flex-direction: column; padding-top: 2rem;
    }
    #nav.active #menu { height: calc(100vh - 70px); visibility: visible; overflow-y: auto; }
    #menu a { padding: 1rem 0; margin: 0 1rem; border-bottom: 1px solid #222; display: block; text-align: center; }
    
    .desktop-only { display: none; } 
    .mobile-social { display: flex !important; justify-content: center; gap: 20px; border: none !important; margin-top: 2rem; }
    .mobile-social i { font-size: 2rem; color: #fff; }

    #btn-mobile { display: flex; padding: 0.5rem 1rem; font-size: 1rem; border: none; background: none; cursor: pointer; gap: 0.5rem; color: white; }
    #hamburger { border-top: 2px solid #fff; width: 20px; }
    #hamburger::after, #hamburger::before { content: ''; display: block; width: 20px; height: 2px; background: #fff; margin-top: 5px; transition: 0.3s; position: relative; }
    #nav.active #hamburger { border-top-color: transparent; }
    #nav.active #hamburger::before { transform: rotate(135deg); }
    #nav.active #hamburger::after { transform: rotate(-135deg); top: -7px; }
}