  :root {
            --branco: #ffffff;
            --cinza-claro: #f4f4f4;
            --cinza-medio: #333333;
            --preto: #111111;
            --suave: 0.4s ease-in-out;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--branco);
            color: var(--preto);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* =====================
           HEADER
        ===================== */
        header {
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #111111;
            position: relative;
            z-index: 100;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-area img {
            height: 40px;
           
        }
        .logo-area span {
            font-weight: 900;
            letter-spacing: -1px;
            font-size: 1.2rem;
            text-transform: uppercase;
            color: #ffffff;
        }

        /* NAV DESKTOP */
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            text-decoration: none;
            font-weight: 700;
            transition: var(--suave);
            font-size: 0.9rem;
            text-transform: uppercase;
            color: #ffffff;
        }
        nav ul li a:hover {
            opacity: 0.5;
        }

        /* =====================
           MENU MOBILE - BOTÃO
        ===================== */
        .mobile-menu-icon {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #ffffff;
            padding: 8px;
            line-height: 1;
            z-index: 9999;
            position: relative;
        }

        /* =====================
           OVERLAY
        ===================== */
        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 8000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* =====================
           DRAWER LATERAL
        ===================== */
        .mobile-nav-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(300px, 85vw);
            height: 100%;
            height: 100dvh;
            background: #111111;
            z-index: 9000;
            display: flex;
            flex-direction: column;
            padding: 30px 30px 50px;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }
        .mobile-nav-drawer.open {
            right: 0;
        }

        .drawer-close-btn {
            align-self: flex-end;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 2rem;
            cursor: pointer;
            line-height: 1;
            padding: 8px;
            margin-bottom: 40px;
        }

        .mobile-nav-drawer ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .mobile-nav-drawer ul li a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            padding: 4px 0;
        }

        body.nav-open {
            overflow: hidden;
        }

        /* =====================
           HERO
        ===================== */
        .hero {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 5%;
            min-height: 80vh;
            flex-wrap: wrap;
            gap: 40px;
            overflow: hidden;
        }
        .hero-text {
            flex: 1;
            min-width: 280px;
            position: relative;
            z-index: 1;
        }
        .hero-text h1 {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        .hero-text p {
            font-size: 1.2rem;
            color: var(--cinza-medio);
            max-width: 500px;
            margin-bottom: 30px;
        }
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 280px;
            position: relative;
            z-index: 1;
        }
        .hero-image img {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            object-fit: cover;
            border: 15px solid var(--cinza-claro);
            transition: var(--suave);
        }
        .hero-image img:hover {
            transform: scale(1.05);
        }
        .btn-cta {
            display: inline-block;
            padding: 15px 40px;
            background: var(--preto);
            color: var(--branco);
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            transition: var(--suave);
        }
        .btn-cta:hover {
            background: var(--cinza-claro);
            color: var(--preto);
            transform: translateY(-5px);
        }

        /* =====================
           BLOG
        ===================== */
        .blog-section {
            position: relative;
            overflow: hidden;
            padding: 100px 5%;
            background-color: var(--cinza-claro);
        }
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            text-transform: uppercase;
            font-weight: 900;
        }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .blog-card {
            background: var(--branco);
            padding: 20px;
            border-radius: 20px;
            transition: var(--suave);
            border: 1px solid transparent;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            border-color: var(--preto);
        }
        .blog-card .date {
            font-size: 0.8rem;
            color: #888;
        }
        .blog-card h3 {
            margin: 15px 0;
            font-size: 1.4rem;
        }
        .blog-card p {
            font-size: 0.9rem;
            color: var(--cinza-medio);
            margin-bottom: 20px;
        }
        .read-more {
            text-decoration: none;
            color: var(--preto);
            font-weight: bold;
            font-size: 0.8rem;
            text-transform: uppercase;
            border-bottom: 2px solid var(--preto);
        }

        /* =====================
           FOOTER
        ===================== */
        footer {
            padding: 50px 5%;
            text-align: center;
            font-size: 0.8rem;
            color: #888;
        }

        /* =====================
           PROJETOS - ESTEIRA
        ===================== */
        .projetos-section {
            padding: 60px 5%;
            background-color: var(--cinza-claro);
            text-align: center;
            overflow: hidden;
        }
        .marquee-container {
            overflow: hidden;
            user-select: none;
            display: flex;
            padding: 30px 0;
            background: var(--branco);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .marquee {
            display: flex;
            gap: 30px;
            animation: scroll 40s linear infinite;
            width: max-content;
        }
        .marquee-group {
            display: flex;
            gap: 30px;
            align-items: center;
            flex-shrink: 0;
        }
        .marquee a {
            display: inline-block;
            flex-shrink: 0;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .marquee img {
            width: 320px;
            height: 200px;
            object-fit: cover;
            object-position: top;
            border-radius: 15px;
            border: 1px solid rgba(0,0,0,0.1);
            background: #fff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05), 0 2px 6px rgba(0,0,0,0.05);
        }
        .marquee a:hover {
            transform: scale(1.05) translateY(-5px);
            z-index: 10;
        }
        .marquee a:hover img {
            border-color: var(--preto);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        @keyframes scroll {
            from { transform: translateX(0); }
            to { transform: translateX(calc(-50% - 15px)); }
        }
        .marquee-container:hover .marquee {
            animation-play-state: paused;
        }

        /* =====================
           SERVIÇOS
        ===================== */
        .s-servicos {
            position: relative;
            padding: 100px 5%;
            background: #fff;
            overflow: hidden;
        }
        .s-header { max-width: 800px; margin-bottom: 80px; }
        .s-header h2 { font-size: 2.8rem; font-weight: 900; letter-spacing: -2px; text-transform: uppercase; line-height: 0.9; }
        .s-header p { margin-top: 15px; color: #666; font-size: 1.1rem; border-left: 2px solid #000; padding-left: 20px; }
        .grid-premium { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
        .card-premium { position: relative; padding: 20px; transition: 0.3s; border-bottom: 1px solid #eee; }
        .card-premium:hover { border-bottom-color: #000; }
        .icon-svg { width: 40px; height: 40px; margin-bottom: 25px; stroke-width: 1.5px; stroke: #000; fill: none; }
        .card-premium h3 { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; letter-spacing: -0.5px; }
        .card-premium p { font-size: 0.9rem; color: #555; line-height: 1.5; margin-bottom: 20px; }
        .tag-service { font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: #999; display: block; margin-bottom: 10px; }

        /* Marcas d'água */
        .watermark-bg {
            position: absolute; top: 40px; right: 8%;
            font-size: clamp(60px, 10vw, 150px); font-weight: 900;
            color: rgba(0,0,0,0.03); text-transform: uppercase;
            letter-spacing: -2px; white-space: nowrap;
            user-select: none; pointer-events: none; z-index: 0; line-height: 0.8;
        }
        .watermark-left {
            position: absolute; top: 40px; left: 38%;
            font-size: clamp(60px, 10vw, 150px); font-weight: 900;
            color: rgba(0,0,0,0.03); text-transform: uppercase;
            letter-spacing: -2px; white-space: nowrap;
            user-select: none; pointer-events: none; z-index: 0;
        }
        .watermark-contato {
            position: absolute; top: 40px; right: 8%;
            font-size: clamp(60px, 10vw, 150px); font-weight: 900;
            color: rgba(0,0,0,0.03); text-transform: uppercase;
            letter-spacing: -2px; white-space: nowrap;
            user-select: none; pointer-events: none; z-index: 0; line-height: 0.8;
        }
        .watermark-hero {
            position: absolute; top: 50px; left: 5%;
            font-size: clamp(50px, 8vw, 100px); font-weight: 900;
            color: rgba(0,0,0,0.05); text-transform: uppercase;
            letter-spacing: -2px; white-space: nowrap;
            user-select: none; pointer-events: none; z-index: 0; line-height: 0.8;
        }
        .watermark-right {
            position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
            font-size: 8rem; font-weight: 900;
            color: rgba(0,0,0,0.03); pointer-events: none; white-space: nowrap; z-index: 0;
        }
        .watermark-right2 {
            position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
            font-size: 8rem; font-weight: 900;
            color: rgba(0,0,0,0.03); pointer-events: none; white-space: nowrap; z-index: 0;
        }
        .s-header, .grid-premium { position: relative; z-index: 1; }

        /* =====================
           CONTATO
        ===================== */
        .s-contato {
            position: relative;
            padding: 100px 5%;
            background: var(--branco);
            overflow: hidden;
            border-bottom: 1px solid #eee;
        }
        .contato-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            position: relative;
            z-index: 1;
        }
        .contato-info h3 { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 30px; letter-spacing: -1px; }
        .contato-item { margin-bottom: 40px; }
        .contato-item span { display: block; font-size: 0.7rem; font-weight: 900; text-transform: uppercase; color: #999; margin-bottom: 5px; letter-spacing: 1px; }
        .contato-item a, .contato-item p { font-size: 1.2rem; font-weight: 700; color: var(--preto); text-decoration: none; transition: var(--suave); }
        .contato-item a:hover { opacity: 0.5; }
        .contato-form form { display: flex; flex-direction: column; gap: 25px; }
        .form-group input,
        .form-group textarea {
            width: 100%; padding: 15px 0; border: none;
            border-bottom: 2px solid #eee; background: transparent;
            font-family: 'Inter', sans-serif; font-size: 1rem; outline: none; transition: var(--suave);
        }
        .form-group input:focus,
        .form-group textarea:focus { border-bottom-color: var(--preto); }
        .btn-submit {
            align-self: flex-start; padding: 18px 50px;
            background: var(--preto); color: var(--branco); border: none;
            border-radius: 50px; font-weight: 900; text-transform: uppercase;
            cursor: pointer; transition: var(--suave);
        }
        .btn-submit:hover { background: #333; transform: translateY(-3px); }

        /* =====================
           SEÇÃO IA SEARCH
        ===================== */
        .s-ia-search {
            padding: 80px 5%;
            position: relative;
            background-color: #fff;
            overflow: hidden;
        }
        .container-ia { max-width: 1200px; margin: 0 auto; }
        .ia-content {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 60px;
            align-items: center;
        }
        .ia-video { display: flex; flex-direction: column; align-items: center; z-index: 2; }
        .video-card {
            width: 100%; max-width: 350px;
            background: #000; border-radius: 20px; overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 4px solid #fff;
        }
        .video-card video { width: 100%; height: auto; display: block; object-fit: contain; }
        .video-caption { margin-top: 15px; font-size: 0.75rem; color: #999; text-transform: uppercase; letter-spacing: 1px; }
        .ia-text h2 { font-size: 2.8rem; color: #111; line-height: 1.1; margin-bottom: 20px; }
        .ia-list { list-style: none; padding: 0; margin: 25px 0; }
        .ia-list li { display: flex; align-items: center; margin-bottom: 12px; font-weight: 600; }
        .ia-list li i { color: #007bff; margin-right: 10px; }
        .ia-highlight { border-left: 4px solid #007bff; padding-left: 20px; margin-bottom: 30px; font-style: italic; color: #555; }

        /* BOTÃO WHATSAPP FLUTUANTE */
        .whatsapp-fixed {
            position: fixed; width: 60px; height: 60px;
            bottom: 40px; right: 40px; background-color: #25d366;
            color: #FFF; border-radius: 50px; text-align: center;
            font-size: 30px; box-shadow: 0px 10px 25px rgba(0,0,0,0.3);
            z-index: 1000; display: flex; align-items: center; justify-content: center;
            text-decoration: none; transition: all 0.3s ease; animation: pulse-wa 2s infinite;
        }
        .whatsapp-fixed:hover { transform: scale(1.1); background-color: #128c7e; color: #fff; }
        .whatsapp-fixed svg { width: 35px; height: 35px; fill: currentColor; }
        @keyframes pulse-wa {
            0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
            70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
            100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
        }

        /* =====================
           RESPONSIVO MOBILE
        ===================== */
        @media (max-width: 768px) {
            nav > ul { display: none; }
            .mobile-menu-icon { display: block; }

            .hero {
                text-align: center;
                padding: 30px 5% 40px;
                min-height: auto;
                flex-direction: column;
                gap: 20px;
            }
            .hero-text { order: 2; }
            .hero-image { order: 1; }
            .hero-image img { width: 200px; height: 200px; }
            .hero-text h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
            .hero-text p { font-size: 1rem; }

            .section-title { font-size: 1.8rem; margin-bottom: 30px; }
            .blog-section { padding: 50px 5%; }
            .blog-card h3 { font-size: 1.2rem; }
            .blog-card p { font-size: 0.95rem; }

            .projetos-section { padding: 40px 5%; }
            .marquee img { width: 240px; height: 150px; }

            .s-servicos { padding: 50px 5%; }
            .s-header { margin-bottom: 40px; }
            .s-header h2 { font-size: 1.9rem; letter-spacing: -1px; }
            .s-header p { font-size: 1rem; }
            .card-premium h3 { font-size: 1.1rem; }
            .card-premium p { font-size: 0.95rem; }

            .s-contato { padding: 50px 5%; }
            .contato-wrapper { grid-template-columns: 1fr; gap: 40px; }
            .contato-info h3 { font-size: 1.3rem; }
            .contato-item a, .contato-item p { font-size: 1.05rem; }
            .btn-submit { align-self: stretch; text-align: center; }

            .s-ia-search { padding: 40px 20px; }
            .ia-content { display: flex; flex-direction: column; gap: 30px; }
            .ia-video { width: 100%; order: 1; }
            .video-card { max-width: 95%; margin: 0 auto; }
            .ia-text { width: 100%; order: 2; text-align: justify; padding: 0 10px; }
            .ia-text h2 { font-size: 2rem; text-align: center; }
            .ia-text p { margin-bottom: 20px; hyphens: auto; font-size: 1rem; }
            .ia-list li { justify-content: flex-start; font-size: 1rem; }
            .ia-highlight { border-left: none; border-top: 2px solid #007bff; padding: 15px 0; text-align: center; }
            .watermark-right { font-size: 4rem; top: 10%; transform: none; }
            .btn-cta { display: block; text-align: center; }

            .whatsapp-fixed { width: 50px; height: 50px; bottom: 20px; right: 20px; }
            .whatsapp-fixed svg { width: 28px; height: 28px; }
        }

        @media (max-width: 992px) {
            .contato-wrapper { grid-template-columns: 1fr; gap: 50px; }
            .s-header h2 { font-size: 2.2rem; }
        }
        /* Estilo Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 40px;
    left: 40px; /* Lado oposto ao WhatsApp */
    width: 50px;
    height: 50px;
    background-color: var(--preto);
    color: var(--branco);
    border: 2px solid var(--branco);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0; /* Começa invisível */
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--branco);
    color: var(--preto);
    transform: translateY(-5px);
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}
/* ── Estilização do Compartilhamento ──────────────── */
.post-share {
    margin-top: 70px;
    padding-top: 36px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.share-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.share-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: #1a1a1a; /* Preto para combinar com seu tema */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.share-link:hover {
    color: #666;
    transform: translateY(-2px);
}

/* Responsividade: No mobile, os links ficam mais fáceis de clicar */
@media (max-width: 600px) {
    .share-buttons {
        gap: 15px;
    }
    .share-link {
        font-size: 0.75rem;
    }
}
/* ── SEÇÃO FAQ (ATUALIZADA PARA 2 COLUNAS) ── */
.s-faq {
    padding: 100px 5%;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.container-faq {
    max-width: 1200px; /* Aumentado para caber as duas colunas */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Novo wrapper para alinhar lado a lado */
.faq-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Lado Esquerdo: Título */
.faq-header-side {
    flex: 1;
    position: sticky;
    top: 120px; /* Faz o título seguir o scroll */
}

.faq-header-side h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin: 20px 0;
    letter-spacing: -2px;
}

/* Lado Direito: Perguntas */
.faq-grid {
    flex: 1.5;
    margin-top: 0; /* Removido margem superior para alinhar com o topo */
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #666;
    font-size: 0.95rem;
}

/* Responsivo para celular */
@media (max-width: 992px) {
    .faq-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .faq-header-side {
        position: static;
        text-align: center;
    }
    .faq-header-side h2 {
        font-size: 2.2rem;
    }
}

    /* ── Newsletter ──────────────────────────────────── */
    .post-newsletter {
        background: var(--preto, #1a1a1a);
        color: #fff;
        padding: 75px 5%;
        text-align: center;
    }
    .post-newsletter h3 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }
    .post-newsletter p {
        max-width: 460px;
        margin: 0 auto 30px;
        color: #888;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .newsletter-form {
        display: flex;
        max-width: 420px;
        margin: 0 auto;
    }
    .newsletter-form input[type="email"] {
        flex: 1;
        padding: 14px 18px;
        border: none;
        border-radius: 0;
        font-size: 0.9rem;
        background: #2a2a2a;
        color: #fff;
        outline: none;
    }
    .newsletter-form input[type="email"]::placeholder { color: #555; }
    .newsletter-form button {
        padding: 14px 22px;
        background: #fff;
        color: var(--preto, #1a1a1a);
        border: none;
        cursor: pointer;
        font-weight: 800;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: background 0.15s;
    }
    .newsletter-form button:hover { background: #e0e0e0; }

/* Container do Separador */
.glow-separator-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: #fff; /* Fundo branco para combinar com as seções */
    overflow: hidden;
}

/* A Linha em si */
.glow-line {
    width: 90%; /* Não toca as bordas totais */
    max-width: 1200px;
    height: 1px;
    /* Degradê que vai do transparente para um cinza leve e volta ao transparente */
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(0, 0, 0, 0.05) 20%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(0, 0, 0, 0.05) 80%, 
        transparent 100%);
    position: relative;
}

/* O Brilho Central (Efeito de Luz) */
.glow-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15%; /* Tamanho do brilho central */
    height: 2px; /* Ligeiramente mais grossa para destacar */
    background: linear-gradient(to right, 
        transparent, 
        var(--preto, #1a1a1a), 
        transparent);
    /* Sombra para criar o efeito de "brilho" ou "glow" */
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    filter: blur(0.5px);
}
.blog-hero {
    border-bottom: none !important; /* Remove a linha sólida cinza */
}
/* ── Container do Vídeo ── */
.ia-video {
    max-width: 400px; /* Mantém o tamanho original */
    margin: 0 auto;
}

.video-card {
    position: relative;
    border-radius: 15px; /* Bordas levemente arredondadas e modernas */
    background: #000;
    line-height: 0;
    overflow: hidden; /* Garante que o vídeo respeite o arredondamento */
    
    /* Borda sutil inicial */
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Efeito de Brilho (Glow) */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efeito de Aura Brilhosa no Hover */
.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(255, 255, 255, 0.1); /* Brilho branco suave */
}

/* O Player de Vídeo */
.video-player {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(0.2); /* Estética levemente dessaturada que combina com o site */
    transition: filter 0.5s ease;
}

.video-card:hover .video-player {
    filter: grayscale(0); /* Ganha cor total ao interagir */
}

/* Legenda do Vídeo */
.video-caption {
    display: block;
    margin-top: 18px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    text-align: center;
    position: relative;
}

/* Detalhe da linha na legenda */
.video-caption::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    margin: 0 auto 10px;
}
/* Correção das Marcas d'água para não travar o clique */
.watermark-faq-left, .watermark-hero, .watermark-bg, .watermark-left, .watermark-right, .watermark-right2, .watermark-contato {
    position: absolute;
    z-index: 0;
    pointer-events: none !important; /* Isso permite clicar nos botões atrás do texto */
    user-select: none;
}

/* Posicionamento específico da marca d'água do FAQ na esquerda */
.watermark-faq-left {
    left: 5%;
    top: 50px;
    font-size: clamp(60px, 10vw, 150px);
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    text-transform: uppercase;
}

/* Garante que o FAQ abra suavemente */
.faq-item.active .faq-answer {
    max-height: 500px; /* Valor alto o suficiente */
    transition: max-height 0.5s ease-in;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}
.card-cover-link {
    display: block;
    margin-bottom: 12px;  /* reduza se quiser menos espaço */
    border-radius: 6px;
    overflow: hidden;
    line-height: 0;  /* elimina espaço fantasma abaixo da imagem */
}

.card-cover-img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
    transition: transform 0.3s ease;
}
/* CONTAINER E GRID */
.container-contato { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.contato-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; margin-top: 50px; }

/* FORMULÁRIO PREMIUM */
.contato-form-wrapper { background: #fff; border: 1px solid #eee; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.premium-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.premium-form .form-group { margin-bottom: 25px; display: flex; flex-direction: column; }
.premium-form label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 8px; }
.premium-form input, .premium-form textarea { 
    padding: 15px; border: 1.5px solid #eee; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.95rem; 
    transition: all 0.3s; background: #fcfcfc; 
}
.premium-form input:focus, .premium-form textarea:focus { border-color: #111; background: #fff; outline: none; }

.btn-enviar-premium { 
    width: 100%; padding: 18px; background: #111; color: #fff; border: none; border-radius: 10px; 
    font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; 
    display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s;
}
.btn-enviar-premium:hover { background: #333; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* CARD WHATSAPP DIRETO */
.contato-direto { display: flex; flex-direction: column; gap: 30px; }
.card-whatsapp-promo { 
    background: #f4f4f4; padding: 40px; border-radius: 20px; text-align: center; border: 1px solid #eee;
}
.wa-icon { 
    background: #25d366; width: 60px; height: 60px; border-radius: 50%; display: flex; 
    align-items: center; justify-content: center; margin: 0 auto 20px; color: #fff;
}
.wa-icon svg { width: 30px; fill: currentColor; }
.card-whatsapp-promo span { font-size: 0.7rem; font-weight: 900; text-transform: uppercase; color: #25d366; letter-spacing: 2px; }
.card-whatsapp-promo h3 { font-size: 1.5rem; font-weight: 900; margin: 10px 0; color: #111; }
.card-whatsapp-promo p { font-size: 0.9rem; color: #666; margin-bottom: 25px; line-height: 1.5; }

.btn-wa-direct { 
    display: block; padding: 15px; background: #25d366; color: #fff; text-decoration: none; 
    font-weight: 800; border-radius: 10px; text-transform: uppercase; font-size: 0.85rem; transition: 0.3s;
}
.btn-wa-direct:hover { background: #128c7e; transform: scale(1.02); }

/* INFO EXTRA */
.outros-contatos { padding-left: 10px; }
.c-info { margin-bottom: 20px; }
.c-info small { display: block; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; color: #bbb; letter-spacing: 1px; }
.c-info a { font-size: 1rem; font-weight: 700; color: #111; text-decoration: none; border-bottom: 1px solid transparent; transition: 0.3s; }
.c-info a:hover { border-bottom-color: #111; }

/* CARD SUCESSO */
.msg-sucesso-card { text-align: center; padding: 40px 20px; animation: fadeIn 0.5s ease; }
.icon-check { width: 50px; height: 50px; background: #2d8a4e; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; }

/* RESPONSIVO */
@media (max-width: 900px) {
    .contato-grid { grid-template-columns: 1fr; gap: 40px; }
    .premium-form .form-row { grid-template-columns: 1fr; }
    .contato-form-wrapper { padding: 30px 20px; }
}
/* Container da imagem no post destaque */
.feat-image-container {
    width: 100%;
    height: 400px; /* Altura fixa para manter o padrão */
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
    background: #f0f0f0;
}
.feat-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container da imagem nos cards da grid */
.card-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #f0f0f0;
}
.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Efeito de zoom no hover */
.post-featured:hover .feat-image-container img,
.blog-card:hover .card-image-container img {
    transform: scale(1.08);
}

/* Ajuste no layout do destaque para suportar a imagem em cima ou ao lado */
.post-featured {
    grid-template-columns: 1fr; /* Mudaremos para 1 coluna no topo para a imagem respirar */
    display: block; 
}
.feat-content-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
    align-items: end;
}

@media (max-width: 768px) {
    .feat-content-flex { grid-template-columns: 1fr; gap: 30px; }
    .feat-image-container { height: 250px; }
}
/* ── AJUSTES DO CARD WHATSAPP NO MOBILE ── */
@media (max-width: 768px) {
    
    /* Ajusta o espaçamento do card inteiro */
    .card-whatsapp-promo {
        padding: 30px 20px !important;
        margin-top: 20px;
        border-radius: 15px;
    }

    /* Reduz o tamanho do círculo verde do ícone */
    .wa-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 15px !important;
    }

    /* Reduz o tamanho do ícone SVG dentro do círculo */
    .wa-icon svg {
        width: 25px !important;
        height: 25px !important;
    }

    /* Ajusta os textos do card */
    .card-whatsapp-promo span {
        font-size: 0.6rem !important;
        letter-spacing: 1px !important;
    }

    .card-whatsapp-promo h3 {
        font-size: 1.3rem !important;
        margin: 5px 0 10px !important;
    }

    .card-whatsapp-promo p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }

    /* FORMATAÇÃO DO BOTÃO WHATSAPP (DEIXANDO-O BONITO) */
    .btn-wa-direct {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100% !important;
        padding: 14px !important;
        font-size: 0.8rem !important;
        font-weight: 800 !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 8px !important;
        background: #25d366 !important;
        color: #fff !important;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    
    /* Tira o visual de link azul se houver conflito */
    .btn-wa-direct:active, .btn-wa-direct:visited {
        color: #fff !important;
    }

    /* Alinha o resto das infos de contato abaixo */
    .outros-contatos {
        text-align: center;
        padding-left: 0 !important;
        margin-top: 30px;
    }
}