/*
Theme Name: Compulaserg
Author: Leandro Vieira
Version: 1.0
*/

/* =====================================
   1. RESET E BASE GLOBAL
===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Roboto', sans-serif;
    background-color: #f2f2f2;
    color: #222;
}

/* =====================================
   2. LAYOUT GERAL
===================================== */
.site-outer {
    margin: 0 20px 20px 20px;
    padding-top: 112px; /* 42px topo-1 + 70px topo-2 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
    background: #ffffff;
}

/* =====================================
   3. HEADER FIXO
===================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: #1b2051; /* Fundo azul no header completo */
}

/* =====================================
   4. HEADER - TOPO 1 (FRASES) - CORRIGIDO
===================================== */
.topo-1 {
    background: #1b2051;
    height: 42px;
    min-height: 42px;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden; /* Volta para hidden mas com altura garantida */
}

.topo-1 .container {
    height: 42px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.topo-frases {
    position: relative;
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.topo-frases .frase {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-size: 15px;
    color: #ffffff;
    line-height: 42px; /* Centraliza verticalmente */
    white-space: nowrap;
    padding: 0 20px;
    margin: 0;
    /* Força visibilidade mínima */
    visibility: visible;
    pointer-events: none; /* Evita interferência no mouse */
}

.topo-frases .frase.active {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

.topo-frases .laranja {
    color: #f6a000;
    margin-left: 5px;
}

/* =====================================
   5. HEADER - TOPO 2 (LOGO + MENU + CONTATO)
===================================== */
.topo-2 {
    background: #f2f2f2;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    height: 70px;
    min-height: 70px;
}

.topo-2-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 70px;
    padding: 10px 0;
}

.logo-area {
    flex-shrink: 0;
}

.logo-img {
    max-height: 52px;
    width: auto;
    display: block;
}

/* Menu Principal */
.menu-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.menu-btn {
    background: transparent;
    border: 1px solid #f6a000;
    font-size: 13px;
    font-weight: 500;
    color: #1b2051;
    cursor: pointer;
    padding: 10px 13px;
    border-radius: 4px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.menu-btn:hover {
    background-color: #f6a000;
    color: #ffffff;
}

/* Quando o Blog está em hover, as barras ficam brancas para contrastar */
.menu-btn[href="./faq.php"]:hover ~ .audio-wave span,
.audio-wave:hover span {
    background: #1b2051;
}

/* =====================================
   BOTÃO CONTATO - ENVELOPE ANIMADO
===================================== */

.contact-area {
    flex-shrink: 0;
}

.contact-envelope-wrapper {
    position: relative;
    width: 60px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-envelope {
    position: relative;
    width: 50px;
    height: 35px;
    transition: transform 0.4s ease;
}

/* Corpo do envelope (parte inferior) */
.envelope-body {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 35px 50px;
    border-color: transparent transparent #464c84 transparent;
    z-index: 2;
}

/* Aba superior (tampa) */
.envelope-flap {
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17.5px 25px 0 25px;
    border-color: #f6a000 transparent transparent transparent;
    transform-origin: 50% 0%;
    transition: transform 0.4s ease, z-index 0.2s;
    z-index: 3;
}

/* Fundo do envelope */
.envelope-back {
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 35px;
    background: #1b2051;
    z-index: 0;
}

/* Lateral esquerda */
.envelope-left {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17.5px 0 17.5px 25px;
    border-color: transparent transparent transparent #2f3675;
    z-index: 2;
}

/* Carta dentro */
.envelope-letter {
    position: absolute;
    left: 5px;
    bottom: 2px;
    width: 40px;
    height: 25px;
    background: #ffffff;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Linhas da carta simulando texto */
.letter-line {
    height: 2px;
    background: #f6a000;
    margin: 3px 5px;
}

.letter-line:nth-child(1) { width: 70%; margin-top: 5px; }
.letter-line:nth-child(2) { width: 50%; }
.letter-line:nth-child(3) { width: 60%; }

/* Selo */
.letter-stamp {
    position: absolute;
    bottom: 3px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: #f6a000;
    opacity: 0.6;
}

/* EFEITO HOVER */
.contact-envelope-wrapper:hover .animated-envelope {
    transform: translateY(5px);
}

.contact-envelope-wrapper:hover .envelope-flap {
    transform: rotateX(180deg);
    z-index: 0;
    border-color: #f6a000 transparent transparent transparent;
}

.contact-envelope-wrapper:hover .envelope-letter {
    height: 45px;
    bottom: 8px;
}

/* Sombra */
.envelope-shadow {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 5px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
    transition: width 0.4s ease;
    z-index: -1;
}

.contact-envelope-wrapper:hover .envelope-shadow {
    width: 30px;
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-envelope-wrapper {
        width: 45px;
        height: 35px;
    }
    
    .animated-envelope {
        width: 38px;
        height: 26px;
    }
    
    .envelope-body {
        border-width: 0 0 26px 38px;
    }
    
    .envelope-flap {
        border-width: 13px 19px 0 19px;
    }
    
    .envelope-back {
        width: 38px;
        height: 26px;
    }
    
    .envelope-left {
        border-width: 13px 0 13px 19px;
    }
    
    .envelope-letter {
        width: 30px;
        height: 18px;
        left: 4px;
    }
    
    .letter-stamp {
        width: 6px;
        height: 6px;
    }
}

/* Botão hamburguer mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #1b2051;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 15px;
}

.menu-toggle::before {
    content: '☰ ';
}

.menu-toggle.active::before {
    content: '✕ ';
}

/* =====================================
   6. BANNER / HERO
===================================== */
/* =====================================
   6. BANNER / HERO
===================================== */
.banner-section {
    width: 100%;
    height: 25rem;
    max-height: 30rem;
    position: relative;
    overflow: hidden;
    background: #f2f2f2;
    margin: 0;
    padding: 0;
}

.banner-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Setas do banner */
/* Setas do banner */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #999;                  /* ← ALTERADO: cinza médio para as setas */
    cursor: pointer;
    z-index: 3;
    /* background removido */
    /* border-radius removido */
    /* width removido */
    /* height removido */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.banner-arrow.prev {
    left: 1.25rem;
}

.banner-arrow.next {
    right: 1.25rem;
}

.banner-arrow:hover {
    color: #f6a000;
}

/* =====================================
   7. SEÇÃO 2 - CONTEÚDO ALTERNADO
===================================== */

.section-02 {
    padding: 40px 0;
	position: relative; /* ← ADICIONAR ESTA LINHA */
}

.s2-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 100px;
}

.s2-row:last-child {
    margin-bottom: 0;
}

.s2-row.reverse {
    flex-direction: row-reverse;
}

.s2-box {
    flex: 1;
}

.s2-img img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.s2-text h2 {
    font-size: 28px;
    color: #1b2051;
    margin-bottom: 20px;
}

.s2-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* =====================================
   8. FORMATAÇÃO DE TEXTOS
===================================== */
.lead-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 16px;
    color: #f6a000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -15px;
    margin-bottom: 20px;
}

.highlight-orange {
    color: #f6a000;
    font-weight: 600;
}

.highlight-blue {
    color: #1b2051;
    font-weight: 600;
}

/* Caixas de destaque */
.destaque-box {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border-left: 4px solid #f6a000;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.destaque-box.azul {
    background: linear-gradient(135deg, #f0f3ff 0%, #fff 100%);
    border-left-color: #1b2051;
}

.destaque-box.laranja {
    background: linear-gradient(135deg, #fff5e6 0%, #fff 100%);
    border-left-color: #f6a000;
}

.destaque-titulo {
    font-size: 15px;
    font-weight: 700;
    color: #1b2051;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* =====================================
   BOTÃO GUIA PROFISSIONAL - EFEITO REQUINTADO
===================================== */
.btn-guia-requintado {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f6a000 0%, #ff8c00 50%, #f6a000 100%);
    background-size: 200% 200%;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(246, 160, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-guia-requintado::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-guia-requintado:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(246, 160, 0, 0.5);
    border-color: rgba(255,255,255,0.3);
}

.btn-guia-requintado:hover::before {
    left: 100%;
}

.btn-guia-requintado svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-guia-requintado:hover svg {
    transform: translateX(5px);
}

/* Animação sutil do gradiente */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-guia-requintado {
    animation: gradientShift 3s ease infinite;
}

/* =====================================
   CORREÇÃO LISTAS - LINHA ÚNICA
===================================== */

/* Força lista de benefícios em linha única */
.lista-beneficios li,
.lista-servicos li {
    display: block !important; /* Remove o flex que quebra em 2 linhas */
    padding: 10px 0 !important;
    line-height: 1.6 !important;
}

/* Ajusta os ícones para ficarem inline com o texto */
.lista-beneficios .check-icon,
.lista-servicos .bullet-icon {
    display: inline !important;
    margin-right: 8px !important;
    vertical-align: middle !important;
}

/* Garante que o texto fique na mesma linha que o ícone */
.lista-beneficios li strong,
.lista-servicos li strong {
    display: inline !important;
}

/* Quebra de linha apenas em mobile se necessário */
@media (max-width: 480px) {
    .lista-beneficios li,
    .lista-servicos li {
        font-size: 14px;
    }
}

/* Listas */
.lista-marcas,
.lista-servicos,
.lista-beneficios,
.lista-pilares {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.lista-marcas li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.marca-nome {
    font-weight: 700;
    color: #1b2051;
    font-size: 16px;
    min-width: 120px;
}

.lista-servicos li,
.lista-beneficios li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.bullet-icon {
    color: #f6a000;
    font-size: 12px;
    margin-top: 5px;
}

.check-icon {
    color: #28a745;
    font-size: 16px;
    font-weight: bold;
    margin-top: 2px;
}

/* Lista de pilares numerada */
.lista-pilares li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.pilar-numero {
    background: #1b2051;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.pilar-conteudo {
    flex: 1;
}

.pilar-conteudo strong {
    display: block;
    color: #1b2051;
    margin-bottom: 5px;
    font-size: 15px;
}

.pilar-conteudo span {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Exemplo box */
.exemplo-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.exemplo-titulo {
    font-weight: 600;
    color: #1b2051;
    margin-bottom: 15px;
    font-size: 15px;
}

.exemplo-item {
    padding: 10px 0 10px 15px;
    border-left: 3px solid #f6a000;
    margin-bottom: 10px;
    line-height: 1.6;
}

.mes {
    font-weight: 700;
    color: #f6a000;
    display: block;
    margin-bottom: 3px;
}

/* Duas colunas */
.duas-colunas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 25px 0;
}

.coluna-acabamento {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.titulo-coluna {
    font-size: 15px;
    margin-bottom: 12px;
    color: #1b2051;
}

.titulo-coluna span {
    margin-right: 5px;
}

/* Tabela de equipamentos */
.tabela-equipamentos {
    margin-top: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.tabela-linha {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 12px 15px;
    border-bottom: 1px solid #e5e5e5;
    align-items: center;
    gap: 15px;
}

.tabela-linha:last-child {
    border-bottom: none;
}

.tabela-header {
    background: #1b2051;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.tabela-cat {
    font-weight: 600;
    color: #1b2051;
    font-size: 14px;
}

.tabela-eq {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

/* Conclusão */
.conclusao {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    font-size: 16px;
    line-height: 1.7;
}

.conclusao.destaque-final {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f6a000;
    margin-top: 30px;
}

/* =====================================
   9. SCROLL REVEAL ANIMAÇÕES
===================================== */

.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.s2-text.reveal-left,
.s2-text.reveal-right {
    transition-delay: 0.2s;
}

/* =====================================
   10. CARROSSEL DE DEPOIMENTOS
===================================== */
.section-depoimentos {
    background: linear-gradient(135deg, #1b2051 0%, #2d3a7a 100%);
    padding: 50px 0 40px 0;  /* REDUZIDO: topo 50px, base 40px */
    position: relative;
    overflow: hidden;
}

.section-depoimentos::before,
.section-depoimentos::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.section-depoimentos::before {
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 160, 0, 0.1) 0%, transparent 70%);
}

.section-depoimentos::after {
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

/* Header */
.depoimentos-header {
    text-align: center;
    margin-bottom: 30px;  /* REDUZIDO de 60px para 30px */
    position: relative;
    z-index: 1;
}

.depoimentos-pretitulo {
    display: inline-block;
    color: #f6a000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.depoimentos-titulo {
    color: #ffffff;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.depoimentos-titulo span {
    font-weight: 700;
}

.depoimentos-linha {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f6a000, #ff8c00);
    margin: 0 auto;
    border-radius: 2px;
}

/* Container e botões */
.depoimentos-carrossel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.depo-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: auto;
}

.depo-btn:hover {
    background: #f6a000;
    border-color: #f6a000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(246, 160, 0, 0.4);
}

.depo-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.depo-btn svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.depo-prev {
    left: -100px;
}

.depo-next {
    right: -100px;
}

/* Wrapper e cards */
.depoimentos-wrapper {
    position: relative;
    height: 340px;  /* REDUZIDO de 400px para 340px */
    perspective: 1000px;
}

.depo-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: rotateY(-30deg) translateX(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.depo-card.active {
    opacity: 1;
    transform: rotateY(0) translateX(0) scale(1);
    pointer-events: all;
    z-index: 5;
}

.depo-card.prev {
    opacity: 0.3;
    transform: rotateY(30deg) translateX(-100px) scale(0.9);
    z-index: 1;
}

/* Conteúdo do card */
.depo-aspas {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 120px;
    color: #f6a000;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.depo-conteudo {
    position: relative;
    z-index: 1;
}

.depo-texto {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
    font-style: italic;
}

/* Autor */
.depo-autor {
    display: flex;
    align-items: center;
    gap: 20px;
}

.depo-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f6a000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.depo-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depo-info {
    display: flex;
    flex-direction: column;
}

.depo-nome {
    font-size: 18px;
    color: #1b2051;
    margin-bottom: 5px;
}

.depo-cargo {
    font-size: 14px;
    color: #666;
}

.depo-empresa {
    font-size: 13px;
    color: #f6a000;
    font-weight: 600;
    margin-top: 3px;
}

/* Rating */
.depo-rating {
    position: absolute;
    top: 30px;
    right: 40px;
    display: flex;
    gap: 3px;
}

.estrela {
    color: #f6a000;
    font-size: 20px;
}

/* Indicadores */
.depo-indicadores {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;  /* REDUZIDO de 40px para 20px */
    position: relative;
}

.indicador {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicador::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    border: 2px solid #f6a000;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.indicador.active {
    background: #f6a000;
    transform: scale(1.2);
}

.indicador.active::before {
    transform: translate(-50%, -50%) scale(1);
}

/* =====================================
   DEPOIMENTOS - GOOGLE LINK + AVATAR INICIAL
===================================== */

/* Link do Google ao lado do título */
.depo-google-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 10px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.depo-google-link:hover {
    transform: scale(1.15);
}

.depo-google-link svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Ajuste no header para alinhar título + ícone */
.depoimentos-titulo {
    display: inline;
    white-space: normal;
}

.depoimentos-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Container do título + ícone para alinhamento correto */
.depoimentos-header h2 {
    display: inline;
    line-height: 1.2;
}

/* Link do Google ao lado do título */
.depo-google-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 10px;
    vertical-align: middle;
    position: relative;
    top: -6px;
    transition: transform 0.2s ease;
}

/* Avatar com inicial (estilo Google) */
.depo-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    border: 4px solid #f6a000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.depo-avatar-texto-escuro {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #1b2051;
    border: 4px solid #f6a000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

/* Cores fixas por depoimento (data-index) */
.depo-card[data-index="0"] .depo-avatar { background: #1b2051; }
.depo-card[data-index="1"] .depo-avatar { background: #f6a000; }
.depo-card[data-index="2"] .depo-avatar { background: #8a90b8; }
.depo-card[data-index="3"] .depo-avatar { background: #1b2051; }
.depo-card[data-index="4"] .depo-avatar { background: #f6a000; }
.depo-card[data-index="5"] .depo-avatar { background: #8a90b8; }
.depo-card[data-index="6"] .depo-avatar { background: #1b2051; }
.depo-card[data-index="7"] .depo-avatar { background: #f6a000; }


/* Mobile */
@media (max-width: 768px) {
    .depo-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-width: 3px;
    }
    
    .depo-google-link {
        width: 24px;
        height: 24px;
        margin-left: 8px;
    }
}

/* =====================================
   SEÇÃO CLIENTES
===================================== */
.clientes-header {
    text-align: center;
	margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.clientes-pretitulo {
    display: inline-block;
    color: #1b2051;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.clientes-titulo {
    color: #1b2051;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.clientes-linha {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f6a000, #ff8c00);
    margin: 0 auto;
    border-radius: 2px;
}

.section-clientes {
    background: #f2f2f2;
}

.section-clientes .secao-titulo span {
    color: #f6a000;
    font-weight: 700;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.cliente-logo {
    will-change: transform;
    transform: translateZ(0);
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.cliente-logo.ativa {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: #f6a000;
    z-index: 10;
    background: #ffffff;
}

.cliente-logo.ativa svg,
.cliente-logo.ativa img {
    opacity: 1;
}

.cliente-logo:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: #f6a000;
}

.cliente-logo svg,
.cliente-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.cliente-logo:hover svg,
.cliente-logo:hover img {
    opacity: 1;
}

/* =====================================
   CLIENTES - MOBILE: GRID FIXO 2 COLUNAS × 6 LINHAS
   COM TRANSIÇÃO AUTOMÁTICA DE GRUPOS
===================================== */

@media (max-width: 768px) {
    .clientes-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        padding: 0 10px;
        position: relative;
        min-height: 520px; /* Altura fixa para 6 linhas */
    }
    
    /* Título menor no mobile */
    .clientes-titulo {
        font-size: 28px;
        line-height: 1.2;
    }
    
    /* Container de cada grupo de logos */
    .clientes-grupo {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    }
    
    /* Grupo ativo visível */
    .clientes-grupo.ativo {
        opacity: 1;
        visibility: visible;
    }
    
    /* Logo no mobile */
    .clientes-grupo .cliente-logo {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 70px;
        border: 1px solid #e5e5e5;
        transition: all 0.3s ease;
    }
    
    .clientes-grupo .cliente-logo svg,
    .clientes-grupo .cliente-logo img {
        max-width: 100%;
        max-height: 45px;
        object-fit: contain;
        opacity: 0.7;
        transition: all 0.3s ease;
        display: block;
        margin: 0 auto;
    }
    
    .clientes-grupo .cliente-logo:hover svg,
    .clientes-grupo .cliente-logo:hover img {
        opacity: 1;
    }
    
    /* Remove efeito de ativação aleatória no mobile */
    .cliente-logo.ativa {
        transform: none !important;
        box-shadow: none !important;
        border-color: #e5e5e5 !important;
        background: #f8f9fa !important;
    }
    
    .cliente-logo.ativa svg,
    .cliente-logo.ativa img {
        opacity: 0.7 !important;
    }
}

/* =====================================
   11. FOOTER
===================================== */

/* =====================================
   FOOTER COLUNA 1 - CENTRALIZADO
===================================== */
.footer-about {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 5px;
}

.footer-logo img {
    max-width: 80px;
    margin: 0 auto;
    display: block;
}

.footer-linha-laranja {
    width: 345px;
    height: 2px;
    background: #f18536;
    margin: 5px auto 15px auto;
}

.footer-logos-grupo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Container de cada logo com tooltip */
.grupo-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.grupo-item img {
    height: 35px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: block;
}

.grupo-item:hover img {
    opacity: 1;
    transform: translateY(-3px);
}

/* TOOLTIP ESTILIZADO */
.grupo-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, #1b2051 0%, #2d3a7a 100%);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(241, 133, 54, 0.3);
    z-index: 100;
}

.grupo-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1b2051;
}

.grupo-tooltip strong {
    display: block;
    color: #f6a000;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.grupo-tooltip small {
    display: block;
    color: #d0d0d0;
    font-size: 11px;
    font-weight: 400;
}

/* Animação ao passar o mouse */
.grupo-item:hover .grupo-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Efeito sutil de brilho no tooltip */
.grupo-tooltip::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
    border-radius: 10px;
    pointer-events: none;
}

.grupo-item:hover .grupo-tooltip::after {
    left: 100%;
}

.footer-frase {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
        
    /* CLIENTES - Mobile */
    .clientes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    
    .cliente-logo {
        height: 60px;
        padding: 10px;
    }
    
    .cliente-logo img {
        max-height: 35px;
    }
	
	.footer-linha-laranja {
        width: 250px;
    }
    
    .footer-logos-grupo {
        gap: 15px;
    }
    
    .grupo-item img {
        height: 30px;
    }
    
    .grupo-tooltip {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .grupo-tooltip strong {
        font-size: 12px;
    }
    
    .grupo-tooltip small {
        font-size: 10px;
    }
}

.footer {
    background: #1f2a5a;
    color: #ffffff;
    padding: 50px 0 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.8fr 0.8fr 1fr 1.9fr 0.8fr;
    gap: 40px;
    padding: 0 20px;
}

.footer-col h3 {
    color: #f18536;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col li {
    font-size: 13px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.footer-col ul li:hover {
    color: #f18536;
}


.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    padding: 15px 0;
    background: #18224a;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    color: #ffffff;
    display: inline-flex;
    transition: color 0.3s ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.social-link:hover {
    color: #f18536;
}

/* =====================================
   12. BOTÃO VOLTAR AO TOPO
===================================== */
.voltar-topo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f6a000;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(246, 160, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.voltar-topo.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.voltar-topo:hover {
    background: #1b2051;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27, 32, 81, 0.4);
}

.voltar-topo svg {
    width: 24px;
    height: 24px;
}

/* =====================================
   13. BOTÃO WHATSAPP FIXO
===================================== */
.whatsapp-fixo {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 20px 14px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-fixo:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.5);
    animation: none;
}

.whatsapp-fixo svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.whatsapp-texto {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-fixo::before {
    content: 'Atendimento rápido!';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #1b2051;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-fixo:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* =====================================
   SEÇÃO DE CONTATO - FORMULÁRIO
===================================== */
.section-contato {
    background: #f5f5f5; /* Cinza claro para quebrar o azul */
    padding: 50px 0;
    position: relative;
}

.section-contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1b2051, #f6a000, #1b2051);
}

.contato-header {
    text-align: center;
    margin-bottom: 30px;
}

.contato-pretitulo {
    display: inline-block;
    color: #f6a000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.contato-titulo {
    color: #1b2051;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.contato-titulo span {
    font-weight: 700;
}

.contato-linha {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f6a000, #ff8c00);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.contato-subtitulo {
    color: #666;
    font-size: 15px;
    font-weight: 300;
}

/* Wrapper do conteúdo - AGORA CENTRALIZADO */
.contato-wrapper {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Formulário */
.contato-formulario {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    opacity: 1 !important; /* FORÇA VISIBILIDADE */
    visibility: visible !important; /* FORÇA VISIBILIDADE */
}

.contato-formulario::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f6a000, #1b2051);
    border-radius: 20px 20px 0 0;
}

.form-contato {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-grupo {
    position: relative;
}

.form-grupo input,
.form-grupo textarea {
    width: 100%;
    padding: 15px 15px 15px 40px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    opacity: 1 !important; /* FORÇA VISIBILIDADE */
    visibility: visible !important; /* FORÇA VISIBILIDADE */
}

.form-grupo textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 20px;
}

.form-grupo input:focus,
.form-grupo textarea:focus {
    outline: none;
    border-color: #f6a000;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(246, 160, 0, 0.1);
}

/* =====================================
   FORMULÁRIO - LABEL FLUTUANTE CORRIGIDO
===================================== */

/* Base do label - TODOS os campos iguais */
.form-grupo label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

/* Textarea label */
.form-grupo textarea ~ label {
    top: 25px;
    transform: translateY(-50%);
}

/* ==========================================
   LABEL ATIVO (flutuante) - TODOS OS CAMPOS
   ========================================== */

/* Quando o campo está FOCADO - label sobe */
.form-grupo input:focus ~ label,
.form-grupo textarea:focus ~ label {
    top: 0;
    left: 15px;
    transform: translateY(-50%) scale(0.85);
    color: #f6a000;
    font-weight: 500;
    background: #ffffff;
}

/* Quando o campo tem CONTEÚDO (não está vazio) - label sobe */
/* Funciona para TODOS os campos, com ou sem required */
.form-grupo input:not(:placeholder-shown) ~ label,
.form-grupo textarea:not(:placeholder-shown) ~ label {
    top: 0;
    left: 15px;
    transform: translateY(-50%) scale(0.85);
    color: #f6a000;
    font-weight: 500;
    background: #ffffff;
}

/* ==========================================
   ESTADO INICIAL - placeholder vazio
   ========================================== */

/* Garante que o placeholder não apareça visualmente */
.form-grupo input::placeholder,
.form-grupo textarea::placeholder {
    color: transparent;
    opacity: 0;
}

.form-icone {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    transition: all 0.3s ease;
}

.form-icone svg {
    width: 20px;
    height: 20px;
}

.textarea-icone {
    top: 25px;
    transform: translateY(-50%);
}

.form-grupo input:focus ~ .form-icone,
.form-grupo textarea:focus ~ .form-icone {
    color: #f6a000;
}

/* Botão de enviar */
.btn-enviar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #1b2051 0%, #2d3a7a 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.btn-enviar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-enviar:hover::before {
    left: 100%;
}

.btn-enviar:hover {
    background: linear-gradient(135deg, #f6a000 0%, #ff8c00 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(246, 160, 0, 0.3);
}

.btn-enviar:active {
    transform: translateY(0);
}

.btn-enviar svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-enviar:hover svg {
    transform: translateX(3px);
}

/* Mensagem de retorno do formulário */
.form-mensagem {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-mensagem.sucesso {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-mensagem.erro {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading state */
.btn-enviar.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-enviar.loading span::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =====================================
   FORMULÁRIO - CORREÇÕES
===================================== */

/* Campo de largura total */
.form-grupo-full {
    width: 100%;
}

/* Container do Turnstile - CENTRALIZADO */
.form-captcha {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0;        /* REDUZIDO de 25px para 10px */
    min-height: auto;      /* REMOVIDO min-height fixo */
    padding: 0;            /* GARANTE sem padding extra */
}

/* Ajuste do widget Turnstile */
.cf-turnstile {
    display: inline-block;
    margin: 0;           /* REMOVE margens externas */
    line-height: 0;        /* REMOVE espaço de line-height */
}

/* Container interno do Turnstile */
.cf-turnstile iframe {
    margin: 0 !important;  /* FORÇA sem margem */
    display: block;         /* REMOVE espaço inline */
}

/* Responsivo */
@media (max-width: 768px) {
    
    .form-captcha {
        margin: 20px 0;
    }
}

/* =====================================
   14. MEDIA QUERIES - RESPONSIVO
===================================== */

/* Tablet */
@media (max-width: 1200px) {
    .depo-prev {
        left: -30px;
    }
    
    .depo-next {
        right: -30px;
    }
}

/* Tablet pequeno */
@media (max-width: 992px) {
    .banner-section {
        height: 22rem;
    }
    
    .depo-btn {
        width: 50px;
        height: 50px;
    }
    
    .depo-prev {
        left: 10px;
    }
    
    .depo-next {
        right: 10px;
    }
    
    .depoimentos-wrapper {
        height: 420px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-outer {
        margin: 0;
        padding-top: 35px; /* Apenas topo-2 visível no mobile */
    }
    
    /* Topos mobile */
    .topo-1 {
        display: none;
    }
    
    .topo-2 {
        height: 70px;
        min-height: 70px;
    }
    
    .topo-2-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        height: 70px;
        padding: 10px 20px;
    }
    
    .logo-img {
        max-height: 36px;
    }
    
    .logo-area {
        flex-shrink: 1;
        flex: 0 0 auto;
    }
    
    .contact-area {
        flex-shrink: 0;
        order: 3;
    }
    
    
    .animated-envelope {
        width: 38px;
        height: 26px;
    }
    
    .envelope-body {
        border-width: 0 0 26px 38px;
    }
    
    .envelope-flap {
        border-width: 13px 19px 0 19px;
    }
    
    .envelope-back {
        width: 38px;
        height: 26px;
    }
    
    .envelope-left {
        border-width: 13px 0 13px 19px;
    }
    
    .envelope-letter {
        width: 30px;
        height: 18px;
        left: 4px;
    }
    
    .letter-stamp {
        width: 6px;
        height: 6px;
    }
    
    .menu-toggle {
        display: block;
        order: 2;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
        /* Menu mobile - DUAS COLUNAS */
    .menu-principal {
        display: none;
        /* estrutura resetada — controle via .menu-mobile */
    }
    
    .menu-principal.active {
        display: flex;
    }
    
    /* MOBILE: mostra estrutura de colunas, oculta desktop simples */

    .menu-desktop {
        display: none !important;
    }
    
    .menu-mobile {
        display: none; /* padrão */
        flex-direction: row;
        gap: 0;
        height: auto;
        padding: 25px 20px;
        background: #1b2051;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 100;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        border-top: 3px solid #f6a000;
    }
    
    .menu-mobile.active {
        display: flex;
    }
    
    /* Colunas do menu */
    .menu-coluna {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }    
		
    
    .menu-coluna-esquerda {
        padding-right: 15px;
    }
    
    .menu-coluna-direita {
        padding-left: 15px;
    }
    
    /* Divisor vertical laranja */
    .menu-divisor {
        width: 2px;
        background: linear-gradient(180deg, transparent 0%, #f6a000 20%, #f6a000 80%, transparent 100%);
        margin: 0 5px;
        align-self: stretch;
        min-height: 100%;
    }
    
    /* Título das colunas */
    .menu-titulo-coluna {
        color: #f6a000;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(246, 160, 0, 0.3);
        display: block;
    }
    
    /* Botões do menu mobile */
    .menu-btn {
        width: 100%;
        border-radius: 6px;
        border: none;
        padding: 10px 12px;
        text-align: left;
        color: #ffffff;
        font-size: 13px;
        font-weight: 400;
        background: transparent;
        transition: all 0.25s ease;
        line-height: 1.4;
    }
    
    .menu-btn:hover {
        background: rgba(246, 160, 0, 0.15);
        color: #f6a000;
        padding-left: 16px;
    }
    
    /* Ícone de link externo nos que abrem em nova aba */
    .menu-btn[target="_blank"]::after {
        content: ' ↗';
        font-size: 11px;
        opacity: 0.6;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Banner mobile */
    .banner-section {
        height: auto;
        margin: 0;
        padding: 0;
        background: #f2f2f2; /* Fundo igal o restante */
    }
    
    .banner-wrapper {
        height: auto;
    }
    
    .banner-slide {
        height: auto;
        min-height: 180px;
        max-height: 280px;
        position: relative; /* Muda de absolute para relativo no mobile */
        opacity: 1;
        display: none; /* Esconde todos por padrão */
    }
    
    .banner-slide.active {
        display: flex; /* Só o ativo aparece */
        opacity: 1;
    }
    
    .banner-slide img {
        position: relative; /* Muda de absolute */
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: cover; /* Preenche sem espaços vazios */
        object-position: center;
        display: block;
    }
    
    .banner-arrow {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    
    .banner-arrow.prev {
        left: 0.625rem;
    }
    
    .banner-arrow.next {
        right: 0.625rem;
    }
    
	/* SUBITENS DOS MENUS ABAIXO DO BANNER */
	.subitens-expandido.ativo {
        opacity: 1;
        visibility: visible;
        position: relative; /* ← MUDA DE absolute PARA relative no mobile */
        height: auto;
        min-height: 120px;
        margin-bottom: 20px;
    }
    
    .servicos-header-container {
        min-height: auto; /* ← Remove altura fixa no mobile */
    }
	
	.servicos-header-container {
        min-height: auto;
        position: relative;
    }
    
    .subitens-expandido {
        position: relative;
        min-height: 100px;
        height: auto;
    }
    
    .subitens-expandido.ativo {
        opacity: 1;
        visibility: visible;
        position: relative;
        height: auto;
        margin-bottom: 15px;
    }
    
    .servicos-header.oculto {
        display: none;  /* ← Em vez de só opacity/visibility */
    }
	
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.subitens-mobile-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.subitem-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    font-size: 13px;
    color: #1b2051;
    font-weight: 500;
}

.subitem-mobile .subitem-acoes {
    display: flex;
    gap: 5px;
    margin-left: 5px;
}

/* Card ativo no mobile */
.servico-card.ativo {
    background: #1b2051;
    border-color: #f6a000;
    border-radius: 10px 10px 0 0;
}

.servico-card.ativo .servico-titulo {
    color: #ffffff;
}

/* Esconde o sub-menu desktop no mobile */
@media (max-width: 768px) {
    .servicos-header-container {
        min-height: auto;
    }
    
    .subitens-expandido {
        /* Remove o display: none !important */
        /* O sub-menu desktop fica invisível via opacity/visibility no mobile */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}
	
    /* Seção 2 mobile */
    .s2-row,
    .s2-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .s2-text h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .subtitle {
        text-align: center;
    }
    
    .duas-colunas {
        grid-template-columns: 1fr;
    }
    
    .tabela-linha {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .tabela-header {
        display: none;
    }
    
    .tabela-cat {
        border-bottom: 1px dashed #ddd;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    
    .lista-pilares li {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Scroll reveal mobile */
    .reveal-left,
    .reveal-right {
        transform: translateY(40px);
    }
    
        .section-depoimentos {
        padding: 30px 0 20px 0;  /* MENOR ainda */
    }
    
    .depoimentos-header {
        margin-bottom: 20px;  /* REDUZIDO */
    }
    
    .depoimentos-titulo {
        font-size: 24px;
    }
    
    /* SETAS EM LARANJA - VISÍVEIS NO FUNDO AZUL */
    .depo-btn {
        background: #f6a000;  /* LARANJA sólido */
        border-color: #f6a000;
        color: #ffffff;
        width: 40px;
        height: 40px;
    }
    
    .depo-btn:hover {
        background: #ff8c00;
        border-color: #ff8c00;
    }
    
    .depo-prev {
        left: 5px;  /* Mais colada na borda */
    }
    
    .depo-next {
        right: 5px;
    }
    
    /* REMOVE INDICADORES (BOLINHAS) */
    .depo-indicadores {
        display: none !important;
    }
    
    /* CARD MAIS COMPACTO */
    .depo-card {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .depo-texto {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .depo-aspas {
        font-size: 60px;
        top: 15px;
        left: 15px;
    }
    
    .depo-autor {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .depo-avatar {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }
    
    .depo-nome {
        font-size: 16px;
    }
    
    .depo-cargo,
    .depo-empresa {
        font-size: 13px;
    }
    
    .depo-rating {
        position: static;
        justify-content: center;
        margin-top: 15px;
    }
    
    .estrela {
        font-size: 16px;
    }
    
    /* WRAPPER MENOR - ÁREA TOTAL MENOS ALTA */
    .depoimentos-wrapper {
        height: 360px;  /* REDUZIDO de 500px */
    }
    
    /* Botões mobile */
    .voltar-topo {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .voltar-topo svg {
        width: 20px;
        height: 20px;
    }
    
    .whatsapp-fixo {
        bottom: 20px;
        left: 20px;
        padding: 12px;
        border-radius: 50%;
    }
    
    .whatsapp-fixo svg {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-texto {
        display: none;
    }
    
    .whatsapp-fixo::before {
        display: none;
    }
    
/* Contato mobile - MAIS ENXUTO */
    .section-contato {
        padding: 30px 0 20px 0;  /* REDUZIDO de 60px 0 */
    }
    
    .contato-header {
        margin-bottom: 15px;  /* REDUZIDO - FALE CONOSCO sobe mais */
    }
    
    .contato-titulo {
        font-size: 24px;
        margin-bottom: 10px;  /* REDUZIDO */
    }
    
    .contato-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .contato-formulario {
        padding: 20px 15px;  /* REDUZIDO de 30px 20px */
    }
    
    .contato-formulario::before {
        height: 3px;  /* Linha gradiente mais fina */
    }
    
    /* ESPAÇAMENTO ENTRE CAMPOS - MAIS APERTADO */
    .form-contato {
        gap: 12px;  /* REDUZIDO de 25px */
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;  /* REDUZIDO */
    }
    
    .form-grupo {
        margin-bottom: 0;  /* Remove margem extra */
    }
    
    .form-grupo input,
    .form-grupo textarea {
        padding: 12px 12px 12px 38px;  /* Menor padding vertical */
        font-size: 14px;  /* Fonte ligeiramente menor */
    }
    
    /* CAMPO MENSAGEM - 3 LINHAS */
    .form-grupo textarea {
        min-height: 80px;  /* REDUZIDO para ~3 linhas */
        rows: 3;
    }
    
    /* ÍCONES MENORES */
    .form-icone svg {
        width: 18px;
        height: 18px;
    }
    
    .textarea-icone {
        top: 20px;
    }
    
    /* CAPTCHA MAIS APERTADO */
    .form-captcha {
        margin: 5px 0;  /* REDUZIDO de 20px+ */
        min-height: auto;
        padding: 0;
    }
    
    /* BOTÃO ENVIAR - MAIS COMPACTO */
    .btn-enviar {
        padding: 14px 20px;  /* REDUZIDO de 18px 30px */
        font-size: 15px;
        margin-top: 5px;  /* REDUZIDO de 10px */
    }
    
    .btn-enviar svg {
        width: 18px;
        height: 18px;
    }
	
	    
    /* ==========================================
       ACCORDION MOBILE - SEÇÃO S2
       ========================================== */
    
    /* Cada linha vira card vertical compacto */
    .s2-row.s2-accordion {
        flex-direction: column !important;
        gap: 0;
        margin-bottom: 15px;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    
    /* Remove margin-bottom padrão das rows */
    .s2-row.s2-accordion:last-child {
        margin-bottom: 15px;
    }
    
    /* Imagem sempre visível, compacta */
    .s2-row.s2-accordion .s2-img {
        width: 100%;
        height: 160px;
        overflow: hidden;
        flex: none;
    }
    
    .s2-row.s2-accordion .s2-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
        display: block;
    }
    
    /* Área do título + botão - sempre visível, clicável */
    .s2-header-mobile {
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 3px;
    }
    
    .s2-header-mobile h2 {
        font-size: 18px;
        margin-bottom: 0;
        text-align: left;
        color: #1b2051;
        padding-right: 45px; /* Espaço pro botão */
        line-height: 1.3;
    }
    
    .s2-header-mobile .subtitle {
        font-size: 12px;
        text-align: left;
        margin: 0;
        color: #f6a000;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding-right: 45px;
    }
    
    /* Botão de expandir/recolher [▼] */
    .s2-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2px solid #f6a000;
        background: transparent;
        color: #f6a000;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        flex-shrink: 0;
    }
    
    .s2-toggle svg {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
        display: block;
    }
    
    /* Quando aberto, seta gira para [▲] */
    .s2-row.s2-accordion.aberto .s2-toggle svg {
        transform: rotate(180deg);
    }
    
    .s2-row.s2-accordion.aberto .s2-toggle {
        background: #f6a000;
        color: #ffffff;
        border-color: #f6a000;
    }
    
    /* CONTEÚDO ESCONDIDO por padrão */
    .s2-conteudo-mobile {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
        padding: 0 20px;
    }
    
    /* CONTEÚDO ABERTO */
    .s2-row.s2-accordion.aberto .s2-conteudo-mobile {
        max-height: 3000px; /* Valor alto suficiente para qualquer conteúdo */
        opacity: 1;
        padding: 0 20px 20px;
    }
    
    /* Botão Recolher no final do conteúdo */
    .s2-recolher {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 25px;
        padding: 10px 20px;
        background: transparent;
        border: 1px solid #ddd;
        border-radius: 20px;
        color: #666;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Roboto', sans-serif;
    }
    
    .s2-recolher:hover {
        border-color: #f6a000;
        color: #f6a000;
        background: #fff9f0;
    }
    
    .s2-recolher svg {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
        display: block;
    }
    
    .s2-recolher:hover svg {
        transform: translateY(-2px);
    }
    
    /* Remove animações de scroll reveal no mobile (evita conflito visual) */
    .s2-row.s2-accordion .reveal-left,
    .s2-row.s2-accordion .reveal-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Garante que textos internos fiquem legíveis */
    .s2-conteudo-mobile .lead-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .s2-conteudo-mobile p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    /* Listas dentro do accordion */
    .s2-conteudo-mobile .lista-marcas li,
    .s2-conteudo-mobile .lista-beneficios li,
    .s2-conteudo-mobile .lista-servicos li,
    .s2-conteudo-mobile .lista-pilares li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    /* Tabela de equipamentos dentro do accordion */
    .s2-conteudo-mobile .tabela-equipamentos {
        font-size: 12px;
    }
    
    .s2-conteudo-mobile .tabela-linha {
        padding: 8px 10px;
    }
    
    /* Destaque boxes */
    .s2-conteudo-mobile .destaque-box {
        padding: 15px;
        margin: 15px 0;
    }
    
    .s2-conteudo-mobile .destaque-titulo {
        font-size: 13px;
    }
    
    /* Botão Guia (se houver) */
    .s2-conteudo-mobile .btn-guia-requintado {
        padding: 14px 28px;
        font-size: 13px;
    }
	
}

#contato {
    scroll-margin-top: 10px; /* 112px header + 20px espaço */
}

#servicos-header {
    scroll-margin-top: 10px; /* 112px header + 20px espaço */
}

/* Mobile pequeno */
@media (max-width: 600px) {
        /* CLIENTES - Mobile pequeno */
    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
	
	.footer-container {
        grid-template-columns: 1fr 1fr; /* DUAS colunas para CATEGORIAS + INSTITUCIONAL */
        text-align: center;
        gap: 20px 15px; /* row-gap 20px, column-gap 15px */
    }
    
    /* Coluna 1 (SOBRE/LOGO) - largura total, ocupa as 2 colunas */
    .footer-col.footer-about {
        grid-column: 1 / -1;
    }
    
    /* Coluna 2 (CATEGORIAS) - coluna 1 */
    .footer-col:nth-child(2) {
        grid-column: 1;
    }
    
    /* Coluna 3 (INSTITUCIONAL) - coluna 2 */
    .footer-col:nth-child(3) {
        grid-column: 2;
    }
    
    /* Coluna 4 (ATENDIMENTO) - largura total sozinha */
    .footer-col:nth-child(4) {
        grid-column: 1 / -1;
    }
    
    /* Coluna 5 (SIGA-NOS) - largura total no rodapé */
    .footer-col.footer-social {
        grid-column: 1 / -1;
    }
    
    .footer-logo img {
        margin: 0 auto 15px auto;
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
	
	    /* SIGA-NOS: ícones em linha única, centralizados */
    .footer-social .social-icons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        max-width: 100% !important;
        margin: 15px auto 0 !important;
        grid-template-columns: none !important;
    }
    
    .footer-social .social-icons .social-link {
        justify-self: auto !important;
    }
}

@media (max-width: 480px) {
    .banner-section {
        height: 10rem;
    }
    
    .depoimentos-wrapper {
        height: 340px;  /* REDUZIDO de 550px */
    }
    
    .depo-card {
        padding: 20px 15px;
    }
    
    .depo-texto {
        font-size: 14px;
    }
    
    .depo-btn {
        width: 36px;
        height: 36px;
    }
    
    .depo-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .site-outer {
        padding-top: 35px;
    }
	/* Contato mobile 480px - MAIS ENXUTO */
	.section-contato {
        padding: 25px 0 15px 0;
    }
    
    .contato-titulo {
        font-size: 22px;
    }
    
    .contato-formulario {
        padding: 15px 12px;
    }
    
    .form-contato {
        gap: 10px;
    }
    
    .form-grupo input,
    .form-grupo textarea {
        padding: 10px 10px 10px 36px;
        font-size: 13px;
    }
    
    .form-grupo textarea {
        min-height: 70px;
    }
	
}

@media (max-width: 400px) {
    .voltar-topo {
        bottom: 80px;
    }
}

/* =====================================
   MODAL DO MAPA
===================================== */

.modal-mapa {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-mapa.ativo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-mapa-conteudo {
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    height: 80vh;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal-mapa.ativo .modal-mapa-conteudo {
    transform: scale(1);
}

.modal-mapa-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, #1b2051 0%, #2d3a7a 100%);
    color: #ffffff;
}

.modal-mapa-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.fechar-mapa {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.fechar-mapa:hover {
    transform: rotate(90deg);
}

.fechar-mapa svg {
    width: 24px;
    height: 24px;
}

.modal-mapa-body {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.modal-mapa-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-mapa-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
}

.btn-abrir-maps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f6a000;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-abrir-maps:hover {
    background: #1b2051;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 32, 81, 0.3);
}

.btn-abrir-maps svg {
    width: 18px;
    height: 18px;
}

/* Link do endereço no footer - CORRIGIDO */
.abrir-mapa {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.abrir-mapa:hover {
    color: #f6a000 !important;
    border-bottom-color: #f6a000;
}

/* Responsivo Mapa Google maps*/
@media (max-width: 768px) {
    .modal-mapa-conteudo {
        width: 95%;
        height: 85vh;
        border-radius: 12px;
    }
    
    .modal-mapa-header {
        padding: 15px 20px;
    }
    
    .modal-mapa-header h3 {
        font-size: 16px;
    }
    
    .modal-mapa-footer {
        padding: 15px 20px;
    }
    
    .btn-abrir-maps {
        width: 100%;
        justify-content: center;
    }
	
}

/* =====================================
   MENU DESKTOP / MOBILE - ESTRUTURA DUAL
===================================== */

/* DESKTOP: mostra apenas menu-desktop, oculta menu-mobile */
.menu-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.menu-mobile {
    display: none;
}

/* Garante que os links do menu desktop mantenham o estilo original */
.menu-principal .menu-btn {
    display: inline-block;
}

/* =====================================
   HEADER - LINKS DO MENU (SEM SUBLINHADO)
===================================== */

.menu-principal a.menu-btn {
    text-decoration: none !important;
    display: inline-block;
}

/* Garante que nenhum link do menu tenha sublinhado */
.menu-principal a {
    text-decoration: none !important;
}

.menu-principal a:hover,
.menu-principal a:focus,
.menu-principal a:active {
    text-decoration: none !important;
}

/* =====================================
   FOOTER - LINKS BRANCOS
===================================== */

.footer-col a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #f18536 !important;
}

/* Especificamente para links dentro de listas no footer */
.footer-col ul li a {
    color: #ffffff !important;
}

.footer-col ul li a:hover {
    color: #f18536 !important;
}

/* Link do email no footer */
.footer-col p a {
    color: #ffffff !important;
}

.footer-col p a:hover {
    color: #f18536 !important;
}

/* Link do logo no footer */
.footer-logo a {
    display: inline-block;
}

/* =====================================
   LOGO AREA - LINK SEM SUBLINHADO
===================================== */
.logo-area a {
    text-decoration: none !important;
    display: inline-block;
}

.logo-area a:hover {
    text-decoration: none !important;
}

/* =====================================
   CONTACT AREA - LINK SEM SUBLINHADO
===================================== */
.contact-area a {
    text-decoration: none !important;
}

.contact-area a:hover {
    text-decoration: none !important;
}
/* =====================================
   PÁGINAS INSTITUCIONAIS
===================================== */

.section-institucional {
    padding: 60px 0 100px 0;
    background: #ffffff;
}

.institucional-header {
    text-align: center;
    margin-bottom: 50px;
}

.institucional-header h1 {
    font-size: 36px;
    color: #1b2051;
    font-weight: 700;
    margin-bottom: 20px;
}

.institucional-linha {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f6a000, #ff8c00);
    margin: 0 auto;
    border-radius: 2px;
}

.institucional-conteudo {
    max-width: 800px;
    margin: 0 auto;
}

.institucional-conteudo h2 {
    font-size: 24px;
    color: #1b2051;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.institucional-conteudo h2:first-child {
    margin-top: 0;
}

.institucional-conteudo p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.lista-direitos {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.lista-direitos li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    border-bottom: 1px dashed #eee;
}

.lista-direitos li:last-child {
    border-bottom: none;
}
/* =====================================
   PÁGINAS INSTITUCIONAIS - AJUSTES
===================================== */

.institucional-subtitulo {
    font-size: 16px;
    color: #666;
    margin-top: -10px;
    margin-bottom: 20px;
    font-weight: 400;
}

.institucional-conteudo h3 {
    font-size: 18px;
    color: #1b2051;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.institucional-conteudo a {
    color: #f6a000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.institucional-conteudo a:hover {
    color: #1b2051;
    text-decoration: underline;
}

/* Data de atualização destacada */
.conclusao.destaque-final {
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f3ff 0%, #fff 100%);
    border-left: 4px solid #1b2051;
    border-radius: 0 8px 8px 0;
}
/* =====================================
   TERMOS DE USO - ESTILOS ESPECÍFICOS
===================================== */

.termo-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.termo-item:last-of-type {
    border-bottom: none;
}

.termo-item h2 {
    font-size: 20px;
    color: #1b2051;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.termo-numero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f6a000;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.termo-item p {
    margin-left: 46px;
}

.termo-item .destaque-box {
    margin-left: 46px;
    margin-top: 15px;
}

/* =====================================
   FAQ - PERGUNTAS FREQUENTES
===================================== */

.section-faq .institucional-conteudo {
    max-width: 900px;
}

.faq-intro {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.lista-sites-faq {
    list-style: none;
    padding: 20px;
    margin: 25px 0;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #f6a000;
}

.lista-sites-faq li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-grupo {
    margin-bottom: 40px;
}

.faq-grupo-titulo {
    font-size: 20px;
    color: #1b2051;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f6a000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.faq-pergunta {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #1b2051;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.faq-pergunta:hover {
    background: #f8f9fa;
    color: #f6a000;
}

.faq-icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f6a000;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-pergunta:hover .faq-icone {
    background: #1b2051;
    transform: scale(1.1);
}

.faq-pergunta[aria-expanded="true"] .faq-icone {
    background: #1b2051;
    transform: rotate(180deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

.faq-resposta.ativo {
    max-height: 500px;
    padding: 0 20px 20px 63px;
}

.faq-resposta p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.faq-contato-final {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #1b2051 0%, #2d3a7a 100%);
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.faq-contato-final h3 {
    color: #f6a000;
    font-size: 22px;
    margin-bottom: 15px;
}

.faq-contato-final p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}

.faq-contato-final a {
    color: #f6a000 !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-contato-final a:hover {
    color: #ffffff !important; /* Branco no hover */
    text-decoration: underline;
}

.faq-contato-final a:visited {
    color: #f6a000 !important; /* Mantém laranja mesmo após visitado */
}

.faq-contato-final a:active {
    color: #ffffff !important; /* Branco quando clicado */
}

/* =====================================
   AVISO DE PRIVACIDADE - LISTA ÚNICA
===================================== */

.lista-privacidade {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.lista-privacidade li {
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #f6a000;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.7;
}

.lista-privacidade li:last-child {
    margin-bottom: 0;
}

.lista-privacidade .bullet-icon {
    color: #f6a000;
    font-size: 14px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* =====================================
   AVISO DE PRIVACIDADE - LISTA ÚNICA
===================================== */

.privacidade-lista {
    margin: 25px 0;
    padding: 0;
}

.privacidade-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #f6a000;
    line-height: 1.7;
}

.privacidade-item:last-child {
    margin-bottom: 0;
}

.privacidade-icone {
    color: #f6a000;
    font-size: 14px;
    margin-top: 5px;
    flex-shrink: 0;
}

.privacidade-item p {
    margin: 0;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}
#sobre {
    scroll-margin-top: 100px; /* Compensa header fixo (112px) + espaço extra */
}
#conteudo {
    scroll-margin-top: 60px; /* Altura do banner */
}

/* =====================================
   GUIA DO GRÁFICO - PÁGINA ESPECIAL
===================================== */

.section-guia {
    background: #1b2051;
    padding: 60px 0 100px 0;
    color: #ffffff;
    position: relative;
}

/* TOPO COM 3 IMAGENS (SEM BOX E SOMBRA) */

.guia-topo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.guia-topo-img {
    max-height: 200px;
    width: auto;
    transition: transform 0.3s ease;
}

.guia-topo-img:hover {
    transform: scale(1.05);
}

/* LINK DA GALERIA */

.guia-galeria-link {
    position: relative;
    display: inline-block;
}

.guia-galeria-link::after {
    content: 'VEJA O GUIA →';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #f6a000;
    color: #1b2051;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.guia-galeria-link:hover::after {
    opacity: 1;
    bottom: -35px;
}

/* BLOCOS DE CONTEÚDO ALTERNADOS */

.guia-conteudo {
    max-width: 1000px;
    margin: 0 auto;
}

.guia-bloco {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.guia-bloco-reverse {
    flex-direction: row-reverse;
}

.guia-texto {
    flex: 1;
}

.guia-texto p {
    font-size: 17px;
    line-height: 1.9;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.guia-texto .lead-text {
    font-size: 20px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.7;
}

.highlight-laranja {
    color: #f6a000;
    font-weight: 600;
}

/* DESTAQUES ESPECIAIS */
.guia-destaque {
    margin: 25px 0;
    background: rgba(246, 160, 0, 0.1) !important;
    border-left-color: #f6a000 !important;
}

.guia-destaque.azul {
    background: rgba(77, 171, 247, 0.1) !important;
    border-left-color: #4dabf7 !important;
}

.guia-destaque.laranja {
    background: rgba(246, 160, 0, 0.15) !important;
    border-left-color: #f6a000 !important;
}

/* PARCEIROS */
.guia-intro-parceiros {
    font-size: 18px;
    color: #ffffff;
    font-style: italic;
    border-left: 3px solid #f6a000;
    padding-left: 20px;
    margin-bottom: 25px;
}

.guia-parceiros-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(246, 160, 0, 0.2);
}

.guia-parceiros-titulo {
    color: #f6a000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.guia-parceiros-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.guia-parceiros-lista span {
    background: rgba(246, 160, 0, 0.2);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.guia-parceiros-lista span:hover {
    background: #f6a000;
    color: #1b2051;
}

/* TEMA SENSAÇÕES */

/* =====================================
   CORREÇÃO ÍCONES SENSAÇÕES - SVG MODERNOS
===================================== */

/* Remove o fundo cinza dos ícones e ajusta tamanho */
.guia-sensacoes-lista .sensacao-icone {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f6a000 0%, #ff8c00 100%);
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(246, 160, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guia-sensacoes-lista .sensacao-icone:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(246, 160, 0, 0.4);
}

/* Estiliza os SVGs dentro dos ícones */
.guia-sensacoes-lista .sensacao-icone svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Ajusta o layout da lista para ficar mais elegante */
.guia-sensacoes-lista li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.guia-sensacoes-lista li:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
}

.guia-sensacoes-lista li:last-child {
    border-bottom: none;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .guia-sensacoes-lista .sensacao-icone {
        width: 38px;
        height: 38px;
    }
    
    .guia-sensacoes-lista .sensacao-icone svg {
        width: 20px;
        height: 20px;
    }
}

.guia-tema-titulo {
    font-size: 28px;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(246, 160, 0, 0.3);
}

.guia-sensacoes-lista {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.guia-sensacoes-lista li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    color: #e0e0e0;
}

.guia-sensacoes-lista li:last-child {
    border-bottom: none;
}

.sensacao-icone {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 160, 0, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

/* IMAGEM VERTICAL */
.guia-imagem-vertical {
    flex-shrink: 0;
    width: 143px;
}

.guia-imagem-vertical img {
    width: 143px;
    height: 369px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* VÍDEOS */
.guia-videos {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guia-videos-titulo {
    text-align: center;
    font-size: 24px;
    color: #f6a000;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.guia-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.guia-video-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.guia-video-item:hover {
    transform: translateY(-5px);
}

.guia-video-item h4 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
}

.guia-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.guia-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* LINK FINAL */
.guia-link-final {
    text-align: center;
    margin-top: 60px;
}

.guia-botao-visualizar {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #f6a000 0%, #ff8c00 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 25px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(246, 160, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.guia-botao-visualizar:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(246, 160, 0, 0.5);
}

.guia-botao-icone {
    font-size: 28px;
}

/* CAIXA FLUTUANTE DE PREÇO - DOBRO DO TAMANHO */
.guia-preco-flutuante {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 997;
    background: #f6a000;
    padding: 40px 25px;
    border-radius: 0 16px 16px 0;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.4);
    min-width: 180px;
}

.guia-preco-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.guia-preco-destaque {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.guia-preco-semjuros {
    font-size: 16px;
    color: #1b2051;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.guia-preco-total {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.9;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 2px dashed rgba(255, 255, 255, 0.4);
    width: 100%;
}

.guia-preco-botao {
    background: #1b2051;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guia-preco-botao:hover {
    background: #ffffff;
    color: #1b2051;
    transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    
    /* ==========================================
       TOPO - 3 imagens lado a lado (não quebra)
       ========================================== */
    .guia-topo {
        flex-wrap: nowrap !important;      /* Impede quebra de linha */
        gap: 8px;                          /* Espaço entre elas */
        justify-content: center;
        padding: 0 10px;                   /* Margem lateral */
    }
    
    /* Primeiras 2 imagens - tamanho padrão */
    .guia-topo-img:nth-child(1),
    .guia-topo-img:nth-child(2) {
        max-height: 100px;
        width: auto;
        flex-shrink: 1;
    }
    
    /* Terceira imagem - MAIOR */
    .guia-topo-img:nth-child(3) {
        max-height: 100px;        /* Aumentada */
        width: auto;
        flex-shrink: 1;
    }
    
    /* Remove tooltip "VEJA O GUIA" no mobile */
    .guia-galeria-link::after {
        display: none;
    }
    
    /* ==========================================
       BLOCOS - TODOS com imagem à esquerda do texto
       ========================================== */
    .guia-bloco,
    .guia-bloco-reverse {
        flex-direction: row !important;    /* Força horizontal em TODOS */
        align-items: flex-start;           /* Alinha ao topo */
        gap: 12px;                         /* Espaço entre imagem e texto */
        padding: 20px 12px;               /* Padding ajustado */
    }
    
    /* Todas as imagens verticais - tamanho reduzido */
    .guia-bloco .guia-imagem-vertical,
    .guia-bloco-reverse .guia-imagem-vertical {
        order: 0 !important;               /* SEMPRE à esquerda */
        width: 90px;                      /* Largura fixa */
        flex-shrink: 0;                   /* Não encolhe */
    }
    
    .guia-bloco .guia-imagem-vertical img,
    .guia-bloco-reverse .guia-imagem-vertical img {
        width: 90px;
        height: 232px;                   /* Proporção 369×90/143 */
        object-fit: cover;
    }
    
    /* Texto ao lado - fonte reduzida para caber */
    .guia-bloco .guia-texto,
    .guia-bloco-reverse .guia-texto {
        flex: 1;
        min-width: 0;                     /* Permite encolher */
    }
    
    .guia-bloco .guia-texto p,
    .guia-bloco .guia-texto .lead-text,
    .guia-bloco-reverse .guia-texto p,
    .guia-bloco-reverse .guia-texto .lead-text {
        font-size: 12px;                  /* Fonte menor */
        line-height: 1.55;
        margin-bottom: 10px;
    }
    
    .guia-bloco .destaque-box,
    .guia-bloco-reverse .destaque-box {
        padding: 10px 12px;
        margin: 10px 0;
    }
    
    .guia-bloco .destaque-titulo,
    .guia-bloco-reverse .destaque-titulo {
        font-size: 11px;
    }
    
    /* ==========================================
       RESTANTE (vídeos, preço, etc.)
       ========================================== */
    .guia-videos-grid {
        grid-template-columns: 1fr;
    }
    
    .guia-preco-flutuante {
        top: auto;
        bottom: 200px;
        transform: none;
        border-radius: 0 12px 12px 0;
        padding: 15px 12px;
    }
    
    .guia-preco-destaque {
        font-size: 18px;
    }
}

/* =====================================
   SEÇÃO LISTA DE SERVIÇOS - MENU EXPANDIDO FIXO
===================================== */

.section-servicos {
    background: #f2f2f2;
    padding: 40px 0 40px 0;
    position: relative;
    overflow: visible;
}

/* =====================================
   CONTAINER HEADER + SUB-MENUS (MESMO ESPAÇO)
===================================== */

.servicos-header-container {
    position: relative;
    min-height: 180px; /* Altura fixa para conter header ou sub-menu */
    margin-bottom: 30px;
}

/* HEADER (estado normal) */
.servicos-header {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1;
}

.servicos-header.oculto {
    opacity: 0;
    visibility: hidden;
}

.servicos-pretitulo {
    display: inline-block;
    color: #f6a000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.servicos-titulo {
    color: #1b2051;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.2;
}

.servicos-titulo .highlight-orange {
    font-weight: 700;
}

.servicos-subtitulo {
    color: #666;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
}

.servicos-linha-decorativa {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f6a000, #ff8c00);
    border-radius: 2px;
}

/* =====================================
   ÁREA DE SUBITENS (SOBREPOSTA AO HEADER)
===================================== */

.subitens-expandido {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    overflow: hidden;
}

.subitens-expandido.ativo {
    opacity: 1;
    visibility: visible;
}

/* Título dentro do sub-menu (mesmo estilo do header) */
.subitens-header {
    text-align: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.subitens-header .servicos-titulo {
    margin-bottom: 0;
    font-size: 28px;
}

/* Conteúdo dos subitens (scroll se necessário) */
.subitens-conteudo {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: center;
    align-content: center;
    flex: 1;
    overflow-y: auto;
}

/* =====================================
   LINHA ÚNICA DE CARDS
===================================== */

.servicos-linha {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
    z-index: 3; /* Acima do sub-menu para hover funcionar */
}

.servicos-linha.unica {
    margin-top: 0;
}

/* =====================================
   CARDS INDIVIDUAIS
===================================== */

.servico-card {
    background: #dfedfe;
    border: 1px solid #1b2051;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servico-card:hover,
.servico-card.ativo {
    background: #1b2051;
    border-color: #f6a000;
    box-shadow: 0 8px 25px rgba(27, 32, 81, 0.3);
}

.servico-titulo {
    color: #1b2051;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.servico-card:hover .servico-titulo,
.servico-card.ativo .servico-titulo {
    color: #ffffff;
}

/* Seta indicadora para cima (apontando para sub-menu acima) */
.servico-card.ativo::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #f6a000; /* LARANJA - borda */
    z-index: 9;
}

.servico-card.ativo::after {
    display: block; /* Reativa */
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #1b2051; /* AZUL - preenchimento */
    z-index: 10;
}

/* =====================================
   SUBITENS INDIVIDUAIS
===================================== */

.subitem {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    transition: all 0.25s ease;
    font-size: 12px;
    color: #444;
    font-weight: 500;
    white-space: nowrap;
}

.subitem:hover {
    background: #ffffff;
    border-color: #f6a000;
    box-shadow: 0 3px 10px rgba(246, 160, 0, 0.2);
    transform: translateY(-2px);
}

.subitem-nome {
    color: #1b2051;
    font-weight: 600;
}

/* Ícones de ação nos subitens */
.subitem-acoes {
    display: flex;
    gap: 5px;
    margin-left: 5px;
}

.acao-whatsapp,
.acao-email {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    text-decoration: none;
}

.acao-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.acao-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.15);
}

.acao-email {
    background: #e5e5e5;
    color: #666;
}

.acao-email:hover {
    background: #f6a000;
    color: #ffffff;
    transform: scale(1.15);
}

.acao-whatsapp svg,
.acao-email svg {
    width: 10px;
    height: 10px;
    display: block;
}

/* =====================================
   RESPONSIVO - SERVIÇOS
===================================== */

@media (max-width: 1200px) {
    .servicos-header-container {
        min-height: 160px;
    }
    
    .servicos-titulo {
        font-size: 30px;
    }
    
    .subitens-header .servicos-titulo {
        font-size: 24px;
    }
    
    .servicos-linha {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .servico-card {
        padding: 12px 8px;
        min-height: 55px;
    }
    
    .servico-titulo {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .section-servicos {
        padding: 30px 0 50px 0;
    }
    
    .servicos-header-container {
        min-height: 140px;
        margin-bottom: 20px;
    }
    
    .servicos-titulo {
        font-size: 24px;
    }
    
    .subitens-header .servicos-titulo {
        font-size: 20px;
    }
    
    .servicos-pretitulo {
        font-size: 12px;
    }
    
    .servicos-subtitulo {
        font-size: 14px;
    }
    
    .servicos-linha {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .servico-card {
        padding: 10px 8px;
        min-height: 50px;
    }
    
    .servico-titulo {
        font-size: 9px;
    }
    
    .subitens-expandido {
        padding: 15px 20px;
    }
    
    .subitem {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .acao-whatsapp,
    .acao-email {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .servicos-header-container {
        min-height: 120px;
    }
    
    .servicos-titulo {
        font-size: 20px;
    }
    
    .subitens-header .servicos-titulo {
        font-size: 18px;
    }
    
    .servicos-linha {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .servico-card {
        min-height: 45px;
        padding: 8px 6px;
    }
    
    .servico-titulo {
        font-size: 8px;
        letter-spacing: 0.2px;
    }
    
    .subitens-conteudo {
        gap: 6px 8px;
    }
    
    .subitem {
        padding: 5px 8px;
        font-size: 10px;
    }
}

/* =====================================
   RESPONSIVO - SERVIÇOS - CORRIGIDO
===================================== */

@media (max-width: 1200px) {
    .servicos-linha {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .servicos-titulo {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .servicos-linha {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
	
	.section-clientes .depoimentos-header {
        margin-bottom: 30px;  /* Menor no mobile */
    }
    
    .servicos-grid {
        gap: 30px; /* REDUZIDO no mobile */
    }
    
    .servicos-titulo {
        font-size: 28px;
    }
    
    .servicos-subtitulo {
        font-size: 16px;
    }
    
    .servico-card-inner {
        padding: 20px 12px;
        min-height: 140px; /* AUMENTADO no mobile */
    }
    
    .servico-icone {
        font-size: 28px;
    }
    
    .servico-titulo {
        font-size: 14px;
    }
    
    .servico-hover-text {
        font-size: 12px;
        bottom: 40px;
    }
    
    .servico-lista {
        grid-template-columns: 1fr; /* Uma coluna no mobile */
        gap: 4px;
    }
    
    .servico-lista li {
        padding: 10px;
    }
    
    /* Ações sempre visíveis no mobile */
    .item-acoes {
        opacity: 1;
        transform: none;
    }
    
    .acao-whatsapp,
    .acao-email {
        width: 28px;
        height: 28px;
    }
    
    .acao-whatsapp svg,
    .acao-email svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .servicos-linha {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .servico-card-inner {
        min-height: 100px;
        flex-direction: row;
        gap: 15px;
        text-align: left;
        justify-content: flex-start;
        padding: 15px;
    }
    
    .servico-icone {
        margin-bottom: 0;
        font-size: 24px;
    }
    
    .servico-titulo {
        margin-bottom: 0;
        font-size: 14px;
    }
    
    .servico-hover-text {
        position: static;
        opacity: 1;
        transform: none;
        font-size: 12px;
        margin-top: 5px;
    }
    
    .servico-card:hover .servico-titulo {
        opacity: 1;
        transform: none;
    }
    
    .servico-toggle {
        margin-left: auto;
        position: static;
        transform: none;
    }
    
    .servico-card.active .servico-toggle {
        transform: rotate(180deg);
    }
    
    /* Expandido no mobile */
    .servico-card.active .servico-expandido {
        max-height: 800px; /* MAIOR no mobile */
    }
	
	.subitens-expandido.ativo {
        padding: 15px;
    }
}

/* =====================================
   SUBITENS MOBILE - ESTILOS GLOBAIS
===================================== */
.subitens-mobile {
    grid-column: 1 / -1;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    border: 2px solid #f6a000;
    border-top: none;
    padding: 15px;
    margin-top: -2px;
    animation: slideDown 0.3s ease;
    z-index: 10;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.subitens-mobile-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* Centraliza os itens */
}

.subitem-mobile {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o texto */
    padding: 10px 18px;
    background: #f8f9fa;
    border-radius: 25px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    color: #1b2051;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    min-width: 120px;
}

.subitem-mobile:hover {
    background: #1b2051;
    border-color: #f6a000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 32, 81, 0.2);
}

.subitem-mobile .subitem-nome {
    pointer-events: none; /* O click pega na div, não no span */
}

/* Card ativo no mobile */
.servico-card.ativo {
    background: #1b2051;
    border-color: #f6a000;
    border-radius: 10px 10px 0 0;
}

.servico-card.ativo .servico-titulo {
    color: #ffffff;
}

/* =====================================
   AVIÃO DE PAPEL - SCROLL EFFECT
===================================== */

.paper-plane-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: visible;
}

.paper-plane {
    position: absolute;
    width: 80px; /* Tamanho do avião */
    height: auto;
    opacity: 0; /* Começa invisível */
    will-change: transform, opacity;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

.paper-plane.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .paper-plane {
        width: 45px;
    }
}

/* AVIÃO DE PAPEL - FLIP AO SUBIR */
.paper-plane {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.paper-plane.flipped {
    transform: scaleY(-1) !important;
}

/* AVIÃO DE PAPEL - FIM */

/* =====================================
   FOLHAS FSC - EFEITO SUBTIL DE QUEDA
===================================== */

.folha-fsc {
    position: fixed;
    top: -40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    will-change: transform, opacity;
}

@keyframes folhaQueda {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    10% {
        opacity: 0.55;
    }
    90% {
        opacity: 0.55;
    }
    100% {
        opacity: 0;
        transform: translateY(105vh) translateX(var(--drift)) rotate(var(--rotacao));
    }
}

/* =====================================
   AUDIO WAVE - INDICADOR DE ÁUDIO NO BLOG
===================================== */

.audio-wave {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    height: 16px;
    margin-left: 0;
    padding-left: 2px;
    opacity: 0;
    transform: translateX(-2px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    vertical-align: middle;
}

/* Aparece apenas no hover do botão Blog */
.menu-btn[href="./faq.php"]:hover ~ .audio-wave,
.audio-wave:hover {
    opacity: 1;
    transform: translateX(0);
}

.audio-wave span {
    display: block;
    width: 2px;
    background: #1b2051;
    border-radius: 1px;
    animation: audioWave 1s ease-in-out infinite;
}

/* Alturas simétricas estilo waveform: baixo, médio, alto, médio, baixo */
.audio-wave span:nth-child(1) { height: 6px;  animation-delay: 0s; }
.audio-wave span:nth-child(2) { height: 10px; animation-delay: 0.15s; }
.audio-wave span:nth-child(3) { height: 16px; animation-delay: 0.3s; }
.audio-wave span:nth-child(4) { height: 10px; animation-delay: 0.45s; }
.audio-wave span:nth-child(5) { height: 6px;  animation-delay: 0.6s; }

@keyframes audioWave {
    0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
    50%      { transform: scaleY(1);   opacity: 1; }
}

/* Garante que o container do menu desktop aceite o posicionamento */
.menu-desktop {
    align-items: center;
}

/* Esconde no mobile */
@media (max-width: 768px) {
    .audio-wave {
        display: none;
    }
}