/* -------------- 1. Configurações Globais e Variáveis --- */
:root {
    --dark-background:      #0F172A;
    --light-background:     #07296667;
    --text-primary:         #ffffff;
    --text-secondary:       #CBD5E0;
    
    --text-primary-faq:     #081b2e;
    --text-secundary-faq:   #081b2e;
    --accent-color:         #48D1CC;   /* Ciano Claro LOGO*/
    --cta-color:            #e60073f3;
    --cta-bt-color:         #0F172A;
    --highlight-yellow:     #FFC700;
    --cmf-dark:             #000000cb;   /* Fundos escuros (header, hero, footer)*/
    --cmf-primary-blue:     #05caec;   /*  Cor de destaque (botões, links, slogan)*/
    --cmf-secondary-blue:   #2E5984;   /* Azul institucional (títulos, contato)*/
    --background-hero: #00050a;
    --teste-color: #F9FAFB ;
    --partner-color: #fff; 
    --text-primary-partner:   #01225ef6;
    --solution-color: #0a132e; 
    --text-primary-solution:   #01225ef6;
    
    --background-tag-solution:#fef3c700;
    --text-tag-solution:#cecf89;
    --text-tag-solution1:#1fe9d8;

    /* Variáveis para efeitos :hover dos botões */
    --button-hover-bg:      #a88e916c;
    --cta-back-hover:       #0F172A;
    --cta-hover-border-color:#48D1CC;
    --cta-hover-box-shadow: 0 0 25px rgba(4, 171, 248, 0.8);


    /* Tipografia */
    --font-headings: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font_cmf: 'Montserrat', sans-serif;
}

/* -------------- 2. Estilos Globais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-background);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h1, h2, h3 {
    font-family: var(--font_cmf);
    color: var(--text-primary);
    font-weight: 900;
}


h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
        
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-color);
}

h5 {
    font-family: var(--font_cmf);
    color: var(--text-primary-solution);
    font-weight: 900;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
    

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* -------------- 3. Botões (CTA) --- */
.cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 1s ease;
    cursor: pointer;
    margin: 5px;
}

.cta-button:hover {
    background-color: var(--button-hover-bg);
    color: var(--text-primary);
    transition: background 1s ease, transform 1s ease;
}

.cta-button.filled {
    background-color: var(--cta-bt-color); /*fundo do botão*/
    color: var(--text-primary);
    border-color: var(--accent-color); /*borda do botão*/
    box-shadow: 0 0 20px rgba(6, 155, 241, 0.6); /*sombra do botão*/
}

.cta-button.filled:hover {
    background-color: var(--cta-back-hover);
    border-color: var(--cta-hover-border-color);
    box-shadow: var(--cta-hover-box-shadow);
}

/* Estilo específico para o botão menor (Contato no Menu) */
.cta-button.small {
    padding: 0.5rem 1.5rem;
    
}
       
/* -------------- 4. Cabeçalho e Navegação --- */
header {
    position: fixed;
    width: 100%;
    padding: 12px 0;
    z-index: 1000;
    background-color: var(--cmf-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -10px rgba(2, 78, 139, 0.671);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-icon-png {
    width: 35px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(72, 209, 204, 0.6));
    transition: filter 0.3s ease;
}
    
.logo-link:hover .logo-icon-png {
    filter: drop-shadow(0 0 12px rgba(72, 209, 204, 0.8));
}

.logo-text {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cmf-primary-blue);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Ajuste para o botão no menu desktop */
.nav-menu .cta-button {
    margin-left: 20px;
}

/* Ícone Hamburguer */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-primary);
}

/* Ícones Sociais na Navegação */
.nav-divider {
    width: 1px;
    height: 24px;
    background-color: var(--light-background);
    margin: 0 5px 0 25px;
}

.social-icon-item {
    margin-left: 15px !important; 
}

.social-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icon-item a:hover .social-icon {
    opacity: 0.7;
    transform: scale(1.1);
}

/* -------------- 5. Seção Hero --- */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
    
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-hero);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
    
#hero h1 {
    font-size: 4.7rem;
    line-height: 1.1;
    margin-bottom: 40px;
    max-width: 900px;
}

    
.hero-main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    text-align: left;
}

.hero-text-and-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 0px;
}

.hero-visual-placeholder {
    width: 100%;
    height: 300px;
    background-color: rgba(30, 41, 59, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
    
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
    
.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
    
.benefit-item .icon {
    color: var(--highlight-yellow);
    font-weight: bold;
    font-size: 1.4rem;
}
    
.hero-button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}
    
/* -------------- 6. Seção Parceiros --- */
.partner-logos-section {
     background-color: var(--partner-color);
}

.partner-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.logo-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
    
.logo-card:hover {
    transform: scale(1.05);
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

/* -------------- 7. Paradigma --- */
.paradigm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: stretch;
}
    
.pillar {
    background-color: var(--light-background);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-left: 2px solid;
    border-image: linear-gradient(to bottom, var(--accent-color), var(--cta-color)) 1;      
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
        
.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -15px rgba(72, 209, 204, 0.2);
}

.pillar-icon img {
    width: 130px;
    height: auto;
    margin-bottom: 10px;
}

.pillar h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

/* -------------- 8. Depoimentos --- */
#testimonials {
    background-color: var(--dark-background-color);
    test-color:var(--text-primary);
    padding: 80px 0;
}
    
.testimonial-box {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--light-background);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
           
.testimonial-box p {
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 25px;
}
    
.testimonial-author {
    margin-top: 20px;
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Carrossel Swiper */
#testimonials .swiper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-top: 20px;
    padding-bottom: 50px;
}

#testimonials .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    white-space: normal;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color) !important;
    transform: scale(0.8);
    top: 50%;
}

.swiper-button-next { right: 0px; }
.swiper-button-prev { left: 0px; }
.swiper-pagination { bottom: 20px !important; }

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.5;
}

.swiper-pagination-bullet-active { opacity: 1; }
    
/* -------------- 9. Seção de Dúvidas (FAQ) --- */

#faq {
    background-color: var(--teste-color);
    test-color:var(--text-primary);
    padding: 80px 0;
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--light-background);
}

.faq-item { border-bottom: 1px solid var(--light-background); }

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary-faq);
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.faq-question:hover { color: var(--accent-color); }

.faq-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;

}

.faq-answer p {
    padding: 0 10px 20px 10px;
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-primary-faq);
}

.faq-item.active .faq-question { color: var(--accent-color); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 10px;
}

/* -------------- 10. CTA Final e Rodapé --- */
#contact {
    text-align: center;
    background-color: var(--light-background);
}

#contact h2 { font-size: 2.8rem; }

#contact p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
    
footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--light-background);
    margin-top: 50px;
}

footer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

* --- Estilos para o Rodapé --- */

.footer-content {
    display: flex;
    justify-content: space-between; /* Alinha os itens nas extremidades */
    align-items: center;
    flex-wrap: wrap; /* Permite que os itens quebrem para a linha de baixo em telas pequenas */
    gap: 10px; /* Espaço entre os itens caso eles quebrem a linha */
}

footer .copyright,
footer .developer-credit {
    margin: 0;
}

footer a {
    color: var(--text-secondary); /* Cor sutil para o link */
    text-decoration: none; /* Remove o sublinhado padrão */
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color); /* Muda para a cor primária ao passar o mouse */
    text-decoration: underline; /* Adiciona sublinhado no hover */
}

/* -------------- 11. Responsividade --- */
@media (max-width: 900px) {
    #hero h1 { font-size: 3rem; }
    .hero-main-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text-and-buttons { align-items: center; }
    .hero-visual-placeholder {
        height: 300px;
        margin-top: 40px;
        order: -1;
    }
    #hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-benefits, .hero-button-container { justify-content: center; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    h2 { font-size: 2rem; }

    /* Ajustes do Menu Hamburguer */
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--dark-background);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li {
        margin: 16px 0;
    }
    .nav-menu .cta-button { margin-left: 0; }
    .nav-divider { display: none; }
    
    /* Outros ajustes mobile */
    #hero { padding-top: 100px; }
    #hero h1 { font-size: 2.5rem; }
    .testimonial-box p { font-size: 1.2rem; }
    .faq-question { font-size: 1rem; }
    #contact h2 { font-size: 2.2rem; }
}


/* =================================== */
/* Seção de Soluções (Glassmorphism) - AJUSTADA */
/* =================================== */



/* ============================================== */
/* CSS PARA ALINHAR ÍCONE E TAG NO CARD ESCURO   */
/* ============================================== */

/* 1. Cria um container flexível para o cabeçalho do card */
.solution-card .solution-card-header {
    display: flex;
    justify-content: space-between; /* Empurra o ícone para a esquerda e a tag para a direita */
    align-items: center;          /* Alinha os dois verticalmente */
    width: 100%;
    margin-bottom: 1.5rem;        /* Mantém o espaçamento que o ícone tinha antes */
}

/* 2. Remove a margem do ícone, já que o header agora controla o espaço */
.solution-card .solution-icon {
    margin-bottom: 0;
}

/* 3. Estilo da nova tag para o tema escuro */
.solution-tag-dark {
    background-color: var(--background-tag-solution1);  /* Mesmo verde do card claro, mas com transparência */
    color: var(--text-tag-solution1);                             /* Cor do texto em verde claro */
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-body);
    border: 1px solid rgba(16, 185, 129, 0.3); /* Borda sutil para dar profundidade */
}

/* 3. Estilo da nova tag para o tema escuro */
.solution-tag-clean {
    background-color: var(--background-tag-solution);  /* Mesmo verde do card claro, mas com transparência */
    color: var(--text-tag-solution);                             /* Cor do texto em verde claro */
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-body);
    border: 1px solid rgba(16, 185, 129, 0.3); /* Borda sutil para dar profundidade */
}



#solutions {
    padding: 80px 0;
    background-color: var(--solution-color);
    overflow: hidden;
}

#solutions h2 {
    text-align: center;
    margin-bottom: 50px;
}

/* NOVO LAYOUT PARA A SEÇÃO DE SOLUÇÕES COM 3 COLUNAS */
.solutions-grid {
    display: grid;
    /* Cria 3 colunas de larguras iguais em telas grandes */
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
    align-items: stretch; /* Faz com que os cards tenham a mesma altura */
}

/* AJUSTES PARA RESPONSIVIDADE */

/* Em telas de tablet, quebra para 2 colunas */
@media (max-width: 1100px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Em telas de celular, quebra para 1 coluna */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}


.solution-card {
    /* EFEITO DE VIDRO BASE */
    /* Começa um pouco mais escuro e opaco para ter contraste no hover */
    background: rgba(35, 42, 58, 0.6); /* Levemente mais opaco que antes */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease; /* Adiciona transição para o background */
}

.solution-card:hover {
    transform: translateY(-8px);
    /* EFEITO DE HOVER - FICA MAIS CLARO */
    background: rgba(45, 55, 75, 0.8); /* Cor mais clara e mais opaca no hover */
    /*border-color: var(--highlight-yellow); /* Mantém o destaque na borda */
}

/* ÍCONES MAIS FINOS */
/* A classe ph-thin ou ph-light controla a finura dos ícones Phosphor. */
/* Se você já está usando ph-bold no HTML, pode mudar para ph-light ou ph-thin. */
/* Para garantir, vamos definir a largura da linha via CSS se houver necessidade. */
.solution-icon {
    font-size: 48px;
    color: var(--highlight-yellow);
    margin-bottom: 1.5rem;
    /* Se os ícones não estiverem finos o suficiente, adicione: */
    /* font-weight: 300; /* Experimente 300 para Light ou 200 para Thin */
}

.solution-card h1 {
    font-size: 1.0rem;
    /*text-align: center; centralização texosubtitulo cards serviços*/
    margin-bottom: 50px;
    position: relative;
}



.solution-card h3 {
    font-family: 'Inter', sans-serif;
    
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.solution-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.solution-link {
    color: var(--highlight-yellow);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.solution-link:hover {
    color: #ffffff;
}

.solution-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(4px);
}

/* Ajuste na largura da página (container) */
/* Isso afetará todas as seções que usam a classe .container */
/* Se quiser aplicar apenas à seção de soluções, crie um .solutions-container */
.container {
    max-width: 1400px; /* Aumentado de 1100px para 1200px (ou mais, dependendo do que você sentir melhor) */
    margin: 0 auto;
    padding: 0 20px; /* Adiciona um padding horizontal para telas pequenas */
}
/* =================================== */
/* Estilos para o Card com Barra Animada */
/* =================================== */

.solution-card {
    /* Essencial para a animação funcionar */
    position: relative; /* Permite posicionar a barra dentro do card */
    overflow: hidden;   /* Esconde a barra quando ela está "fora" do card */

    /* Estilos de design que já tínhamos */
    background: rgba(35, 42, 58, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: background 0.7s ease, transform 0.7s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    background: rgba(45, 55, 75, 0.8);
}

/* A Barra Lateral Colorida */
.solution-card-border-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px; /* Largura da barra */
    height: 100%;
    
    /* O gradiente de cores da imagem. Usei as cores do seu tema! */
    background: linear-gradient(to bottom, var(--accent-color), var(--cta-color));
    
    /* Posição inicial: escondida à esquerda */
    transform: translateX(-100%);
    
    /* Animação suave */
    transition: transform 0.7s ease-out;
}

/* Efeito ao passar o mouse no card */
.solution-card:hover .solution-card-border-line {
    /* Posição final: visível na borda esquerda */
    transform: translateX(0);
}

/* Estilos para o conteúdo do card (ícones, texto, etc.) */
.solution-icon {
    font-size: 48px;
    color: var(--highlight-yellow);
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.solution-link {
    color: var(--highlight-yellow);
    text-decoration: none;
    font-weight: 500;
}
/* =================================== */
/* Estilo de Título e Subtítulo        */
/* =================================== */

/* 1. Modifique sua regra 'h2::after' para incluir o subtítulo também */
/* Isso garante que ambos tenham a linha decorativa embaixo */
/* Bloco 1: A nova barra decorativa, mais sutil */
/*h2::after,
.section-subtitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 12px auto 0;
    border-radius: 2px;
}*/

h4.section-subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-color);
}

/* Bloco 2: O subtítulo com menos espaço acima */
.section-subtitle {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-primary);
    text-align: center;
    margin-top: 24px; /* Espaço reduzido */
    margin-bottom: 50px;
}
/* Bloco 2: O subtítulo com menos espaço acima */
.section-subtitle-h5 {
    
 
    font-size: 2rem;
    color: var(--text-primary);
    text-align: center;
    margin-top: 2px; /* Espaço reduzido */
    margin-bottom: 50px;
    font-family: var(--font_cmf);
    color: var(--text-primary);
    font-weight: 900;
    font-size: 2.0rem;
    text-align: center;
    position: relative;
}


/* ================================================= */
/* NOVO ESTILO DE CARD - BASEADO NA IMAGEM (LIGHT) */
/* ================================================= */

.solution-card-light {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 2rem;
    color: var(--text-primary-faq); /* Usando a variável de texto escuro do seu FAQ */
    display: flex;
    flex-direction: column;
    border: 1px solid #E5E7EB; /* Borda sutil */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
}

/* --- Cabeçalho do Card --- */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.card-icon-wrapper {
    background-color: #F3F4F6; /* Cinza claro */
    padding: 12px;
    border-radius: 8px;
    display: inline-flex;
}

.card-icon-wrapper .ph-shield {
    font-size: 28px;
    color: #3B82F6; /* Azul do botão */
}

.card-tag {
    background-color: #D1FAE5; /* Verde bem claro */
    color: #047857;           /* Verde escuro para o texto */
    padding: 6px 14px;
    border-radius: 9999px; /* Formato de pílula */
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-body);
}

/* --- Corpo do Card --- */
.card-body {
    flex-grow: 1; /* Faz o corpo ocupar o espaço disponível */
}

.card-category {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 700;
    color: #6B7280; /* Cinza para o subtítulo */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-title {
    font-family: var(--font_cmf);
    color: var(--text-primary-faq); /* Cor escura do seu tema */
    font-size: 1.75rem;
    font-weight: 900;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.card-description {
    font-family: var(--font-body);
    color: #4B5563; /* Cinza escuro para o texto */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    color: var(--text-primary); /* Cor de texto principal */
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.card-checklist .ph-check {
    color: #10B981; /* Verde para o check */
    font-size: 1.3rem;
    flex-shrink: 0; /* Impede que o ícone seja esmagado */
}

/* --- Rodapé do Card --- */
.card-footer {
    margin-top: auto; /* Empurra o rodapé para o final */
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB; /* Linha divisória */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.delivery-label {
    font-size: 0.8rem;
    color:var(--highlight-yellow);
    font-family: var(--font-body);
}

.delivery-time {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    font-family: var(--font-body);
}

.card-button {
    background-color: #3B82F6; /* Azul do botão da imagem */
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.card-button:hover {
    background-color: #2563EB; /* Azul um pouco mais escuro */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

/* --- Estilos para o Consentimento de Privacidade (Versão Corrigida) --- */

.privacy-consent-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    text-align: left;
}

.privacy-consent-group input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 12px;
    min-width: 18px;
    min-height: 18px;
    cursor: pointer;
}

.privacy-consent-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

/* REGRA ATUALIZADA E MELHORADA PARA O LINK */
.privacy-consent-group label a {
    color: var(--primary-color); /* Força a cor primária para ótima visibilidade */
    font-weight: 700;             /* Deixa o texto em negrito */
    text-decoration: underline;   /* Garante que seja sempre sublinhado */
    transition: color 0.3s ease;
}

/* EFEITO HOVER ADICIONADO */
.privacy-consent-group label a:hover {
    color: #FFFFFF; /* Muda para branco ao passar o mouse */
}

/* ====================================
   FAQ - RESPOSTA LONGA SEM CORTE
   ==================================== */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    overflow: visible;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.3rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.faq-question:hover {
    color: #10B981;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #10B981;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0;
    color: #555555;
    font-size: 1rem;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
}

/* ALTURA DINÂMICA + ROLAGEM INTERNA */
.faq-item.active .faq-answer {
    max-height: 800px; /* Aumentado para respostas longas */
    padding: 1rem 0 1.5rem;
    overflow-y: auto; /* Rolagem se ultrapassar */
    -webkit-overflow-scrolling: touch; /* Suave no iOS */
}

/* Estilo da barra de rolagem (opcional, bonito) */
.faq-answer::-webkit-scrollbar {
    width: 6px;
}

.faq-answer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.faq-answer::-webkit-scrollbar-thumb {
    background: #10B981;
    border-radius: 10px;
}

.faq-answer::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Responsivo */
@media (max-width: 7682px) {
    .faq-question {
        font-size: 1rem;
        padding: 1.1rem 0;
    }
    .faq-answer {
        font-size: 0.95rem;
    }
    .faq-container {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 0.95rem;
    }
    .faq-item.active .faq-answer {
        max-height: 600px; /* Menor no mobile, mas com rolagem */
    }
}