/* 
    AutomatizeMe - Design System [PREMIUM AI TECH] v4.0
    Based on reference: Deep Dark Blue, Vibrant Cyan #00e5ff, Rounded Geometry, Professional AI Aesthetic
*/

:root {
    --primary-cyan: #00e5ff;
    --primary-cyan-glow: rgba(0, 229, 255, 0.4);
    --bg-dark: #000b18;
    --bg-card: #001529;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --btn-radius: 50px;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}


/* Wrapper to isolate AOS horizontal overflow without breaking fixed elements.
   overflow-x: hidden on site-wrapper does NOT affect position:fixed children
   because fixed elements escape ALL containing blocks — this is safe. */
.site-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

span.accent {
    color: var(--primary-cyan);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-nav-pulse {
    background: var(--primary-cyan);
    color: #000000;
    padding: 10px 22px;
    border-radius: var(--btn-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    animation: btnPulse 2s infinite;
    transition: var(--transition);
}

.btn-nav-pulse:hover {
    box-shadow: 0 0 20px var(--primary-cyan-glow);
    transform: scale(1.05);
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 229, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

.mobile-cta-item {
    display: none;
}

/* Hamburger & Mobile Menu Overlay */
.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    margin-left: 20px;
    z-index: 1002;
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--primary-cyan);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 11, 24, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.logo img {
    height: 55px;
    /* Increased logo size */
    display: block;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Soft zoom parallax feel - Hardware accelerated */
    transform: scale(1.02) translateZ(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soft dark-to-transparent gradient for readability */
    background: linear-gradient(to right, rgba(0, 11, 24, 0.95) 0%, rgba(0, 11, 24, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-left {
    max-width: 650px;
    will-change: transform, opacity;
}

.hero-content-left h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: left;
}

.hero-content-left p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-align: left;
}

.cinematic-hover {
    position: relative;
    overflow: hidden;
}

.cinematic-hover:hover {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
    transform: scale(1.05);
}


/* Buttons */
.btn-primary {
    background: var(--primary-cyan);
    color: var(--bg-dark);
    padding: 14px 35px;
    border-radius: var(--btn-radius);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--primary-cyan);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-cyan);
    box-shadow: 0 0 20px var(--primary-cyan-glow);
}

/* Utilities */
.section-padding {
    padding: 100px 0;
}

.bg-darker {
    background-color: #00050d;
}

.relative {
    position: relative;
}

.z-index-2 {
    z-index: 2;
}

/* Sessão 1: Banner Seminário */
.banner-seminario {
    position: relative;
    text-align: center;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg-img {
    width: 100%;
    height: auto;
    display: block;
    filter: opacity(0.8);
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 11, 24, 0.55) 0%, rgba(0, 229, 255, 0.03) 50%, rgba(0, 11, 24, 0.55) 100%);
    z-index: 1;
}

.banner-content {
    position: absolute;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
}

.banner-content h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

/* Showcase CRM Section */
.showcase-section {
    padding: 140px 0;
    background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.08), transparent 50%),
        linear-gradient(to bottom, var(--bg-dark), #00050d);
}

.showcase-flex {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-areas:
        "content images"
        "cta images";
    align-items: center;
    gap: 0 80px;
}

.showcase-content {
    grid-area: content;
}

.showcase-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff;
}

.showcase-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.showcase-cta {
    grid-area: cta;
    align-self: start;
    margin-top: 20px;
}

.showcase-images {
    grid-area: images;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
    /* Altura fixa para controlar o stack */
}

.showcase-img-item {
    position: absolute;
    width: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 229, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-card);
}

/* Efeito de Pilha (Carousel-like) */
.showcase-img-item:nth-child(1) {
    z-index: 1;
    transform: translateX(-120px) scale(0.85);
    opacity: 0.6;
}

.showcase-img-item:nth-child(2) {
    z-index: 3;
    transform: translateX(0) scale(1.05);
    /* Imagem central em destaque */
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    border-color: var(--primary-cyan);
}

.showcase-img-item:nth-child(3) {
    z-index: 2;
    transform: translateX(120px) scale(0.9);
    opacity: 0.8;
}

.showcase-img-item:hover {
    z-index: 10;
    transform: scale(1.1) translateY(-10px) !important;
    opacity: 1 !important;
    border-color: var(--primary-cyan);
}

.showcase-img-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1100px) {
    .showcase-flex {
        gap: 0 40px;
    }

    .showcase-img-item {
        width: 260px;
    }
}

@media (max-width: 992px) {
    .showcase-section {
        padding: 80px 0 50px;
    }

    .showcase-flex {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "images"
            "cta";
        text-align: center;
        gap: 20px;
    }

    .showcase-images {
        height: 380px;
        margin-top: 30px;
        width: 100%;
    }

    .showcase-cta {
        margin-top: 100px;
        align-self: center;
    }

    .showcase-img-item {
        width: 200px;
    }

    .showcase-img-item:nth-child(1) {
        transform: translateX(-60px) scale(0.8);
    }

    .showcase-img-item:nth-child(2) {
        transform: translateX(0) scale(1.0);
    }

    .showcase-img-item:nth-child(3) {
        transform: translateX(60px) scale(0.8);
    }
}

/* Why Choose Section */
.why-choose {
    padding: 120px 0;
    text-align: center;
}

.section-header {
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, #001a33, #000b18);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-cyan);
    font-size: 1.5rem;
    box-shadow: 0 0 15px var(--primary-cyan-glow);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Transform Section */
.transform {
    padding: 100px 0;
    background: #001224;
}

.transform-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.transform-image {
    flex: 1;
}

.transform-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.transform-content {
    flex: 1;
}

.transform-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Sessão 3: Parceiro Estratégico & Vídeo */
.partner-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.partner-left {
    flex: 1;
}

.partner-left h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
}

.partner-right {
    flex: 1;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.15);
    background: #000;
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 5;
    overflow: hidden;
}

.video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-cover:hover img {
    transform: scale(1.03);
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.play-btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.5rem;
    padding-left: 5px;
    /* Ajuste visual do play */
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
    animation: btnPulse 2s infinite;
    z-index: 10;
}

#videoIframeContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.close-video-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 1px solid var(--primary-cyan);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 20;
    font-size: 0.9rem;
    transition: var(--transition);
}

.close-video-btn:hover {
    background: var(--primary-cyan);
    color: #000;
}

/* Sessão 5: Experts */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.expert-card {
    background: linear-gradient(145deg, #001a33, #000b18);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.expert-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
}

.expert-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(145deg, #001a33, #000b18);
    display: flex;
    justify-content: center;
    align-items: center;
}

.expert-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.expert-card:hover .expert-image-wrapper img {
    transform: scale(1.05);
}

.expert-info {
    padding: 25px;
    text-align: center;
}

.expert-info h3 {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin-bottom: 5px;
}

.expert-info span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Sessão 6: Cases de Sucesso */
.testimonial-box {
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(145deg, #001a33, #000b18);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 229, 255, 0.1);
    max-width: 900px;
    margin: 60px auto 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.testimonial-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(0, 229, 255, 0.1);
    position: absolute;
    top: -20px;
    left: -20px;
}

.quote-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.quote-author {
    font-size: 1.2rem;
    color: var(--primary-cyan);
    margin-bottom: 5px;
}

.quote-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #000812;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.2rem;
    color: var(--primary-cyan);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-cyan);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-cyan);
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
    gap: 15px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-cyan);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 0.8;
}

/* LGPD Banner (Simplified Bottom Bar) */
.lgpd-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: rgba(0, 11, 24, 0.98);
    border-top: 1px solid rgba(0, 229, 255, 0.3);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.9);
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.lgpd-banner.show {
    bottom: 0;
}

.lgpd-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
}

.lgpd-content a {
    color: var(--primary-cyan);
    text-decoration: underline;
    font-weight: 500;
}

@media (max-width: 768px) {
    .lgpd-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 15px;
    }

    .lgpd-actions {
        width: 100%;
    }

    .lgpd-actions .btn-nav-pulse {
        width: 100%;
        display: block;
        padding: 12px 0;
        box-sizing: border-box;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }

    .transform-flex,
    .partner-header-flex,
    .testimonial-box {
        flex-direction: column;
        text-align: center;
    }

    .transform-content p,
    .transform-image {
        margin: 0 auto;
    }

    .transform-image,
    .testimonial-image {
        margin: 0 auto;
        margin-top: 40px;
    }

    .partner-right {
        margin-top: 20px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .transform-content h2 {
        font-size: 2.2rem;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    nav {
        flex-wrap: nowrap;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background: var(--bg-card);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 100px 0 0 0;
        margin: 0;
        gap: 35px;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    header {
        padding: 15px 0;
    }

    .logo img {
        height: 35px;
    }

    .header-cta-btn {
        display: none;
    }

    .mobile-cta-item {
        display: block;
        margin-top: 10px;
    }

    .mobile-cta-item .btn-nav-pulse {
        font-size: 0.95rem;
        padding: 10px 18px;
    }

    .btn-nav-pulse {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .trust-flex {
        justify-content: center;
        text-align: center;
    }

    .trust-logos {
        gap: 30px;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Banner Seminário - Mobile: altura maior para a imagem aparecer melhor */
    .banner-seminario {
        min-height: 340px;
    }

    .banner-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn-nav-pulse {
        padding: 8px 15px;
        font-size: 0.75rem;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* Page Hero */
.page-hero {
    padding: 220px 0 80px;
    background: linear-gradient(to bottom, #000b18, #001529);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Who We Are */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
}

.diferencial-box {
    margin-top: 60px;
    background: linear-gradient(145deg, #001a33, #000b18);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-list i {
    color: var(--primary-cyan);
    margin-top: 5px;
}

.highlight-quote {
    border-left: 4px solid var(--primary-cyan);
    padding-left: 20px;
    font-style: italic;
    color: var(--primary-cyan);
    font-size: 1.2rem;
}

/* Video Background Section */
.video-bg-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-bg-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 11, 24, 0.6);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.blend-text {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    mix-blend-mode: overlay;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 900;
}

/* Services */
.services-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.services-content {
    flex: 1;
}

.services-image {
    flex: 1;
}

.rounded-img {
    width: 100%;
    border-radius: var(--border-radius);
}

.shadow-cyan {
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.stat-card {
    background: #001224;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--primary-cyan);
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

/* Maximize Results (Image Banner) */
.maximize-results {
    position: relative;
    padding: 120px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maximize-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.maximize-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maximize-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 11, 24, 0.85);
}

.maximize-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.maximize-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    background: #001529;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-cyan);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #000e1c;
    color: var(--text-muted);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-cyan);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Contact */
.contact-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
    background: linear-gradient(145deg, #001a33, #000b18);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box-small {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.contact-detail p {
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 11, 24, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

@media (max-width: 992px) {

    .services-flex,
    .contact-flex {
        flex-direction: column;
    }
}