@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #2B56BF;
    --primary-color-hover: #244aa8;
    --dark-color: #0c2340;
    --light-gray-color: #f8f9fa;
    --text-color: #5a677d;
    --border-color: #e9ecef;
    --yellow-color: #ffc107;
    --accent-color-orange: #FFA500; /* Laranja para o hover do botão */
}

/* ================================================= */
/* === Reset Básico e Estilos Gerais === */
/* ================================================= */
body, .innovale-lp, .innovale-lp * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Helvetica', 'Arial', sans-serif;
}

.innovale-lp {
    max-width: 100%;
    color: var(--text-color);
}
.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

body.form-page .main-content {
    padding-top: 140px;
}

/* ▲▲▲ COLE O CÓDIGO DE CORREÇÃO ACIMA ▲▲▲ */


/* ================================================= */
/* === Estilo Global do Botão === */
/* ================================================= */
.cta-button {
    display: inline-block;
    /* ... resto do seu código ... */
}





section {
    padding: 50px 0;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* ================================================= */
/* === Estilo Global do Botão === */
/* ================================================= */
.cta-button {
    display: inline-block;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(43, 86, 191, .25);
}
.cta-button:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 86, 191, .35);
}

/* ================================================= */
/* === NOVO Header Flutuante === */
/* ================================================= */
.site-header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
    transition: top 0.3s ease-in-out;
}

.header-container {
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 25px;
    border: 5px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.site-logo {
    flex-shrink: 0;
    margin: 0;
}
.site-logo img {
    height: 40px;
    width: auto;
    display: block;
}
.header-nav {
    margin-left: auto;
}
.header-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.header-nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.header-nav a:hover {
    color: var(--primary-color);
}
.header-cta .cta-button {
    padding: 8px 24px;
    font-size: 0.95rem;
}
.header-cta .cta-button:hover {
    background-color: var(--accent-color-orange);
}

/* === Estilos do Menu Hambúrguer === */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}
.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 10px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}

/* ================================================= */
/* === Nova Seção Hero === */
/* ================================================= */

.hero-section-new {
    background-color: #ffffff;
    padding-top: 140px; /* Espaço para o header flutuante */
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-section-new .container-new {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-section-new .hero-content {
    flex: 1 1 50%; 
    max-width: 500px;
}

.hero-section-new .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-section-new .hero-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-section-new .value-props {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
    padding: 0;
}

.hero-section-new .prop-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-color);
}

.hero-section-new .prop-item svg {
    color: var(--primary-color);
}

.hero-cta-button {
    display: inline-block;
    background: #e6005c;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(230, 0, 92, 0.3);
}

.hero-cta-button:hover {
    background-color: #c0004c;
    transform: translateY(-2px);
}

.hero-section-new .social-proof {
    margin-top: 25px;
}

.hero-section-new .social-proof .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.hero-section-new .social-proof p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
}

.hero-section-new .hero-image-wrapper {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-new .hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ================================================= */
/* === Nova Seção de Comparação === */
/* ================================================= */
.comparison-section {
    padding: 60px 0;
    background-color: #EEF3FA;
}
.comparison-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.comparison-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}
.insurer-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.insurer-card img {
    height: 70px;
    width: auto;
    object-fit: contain;
}
.insurer-card .insurer-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-right: auto;
}
.insurer-card .insurer-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #e6005c;
}
.insurer-card .price-period {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}
.insurer-card.highlighted {
    border-color: var(--primary-color);
    transform: scale(1.05) translateX(10px);
    box-shadow: 0 8px 30px rgba(43, 86, 191, 0.15);
}

.insurer-card.highlighted::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 1.5rem;
    animation: sparkle 1.5s infinite ease-in-out;
}
@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

.comparison-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.comparison-content .comparison-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 20px;
}
.comparison-content .comparison-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 30px;
}
/* ================================================= */
/* === Logos Section === */
/* ================================================= */
.logos-section {
    padding: 40px 0;
}
.logos-title {
    text-align: center;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 500;
}
.logos-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.logos-slider::before, .logos-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right, #fff, transparent);
    pointer-events: none;
}
.logos-slider::before {
    left: 0;
}
.logos-slider::after {
    right: 0;
    transform: scaleX(-1);
}
.logos-track {
    display: flex;
    width: calc(180px * 30);
    animation: scroll 45s linear infinite;
}
.logo-item {
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}
.logo-item img {
    max-width: 180px;
    height: 100px;
    object-fit: contain;
    opacity: 0.6;
    transition: all .3s;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 15)); }
}

/* ================================================= */
/* === Como Funciona Section === */
/* ================================================= */
.como-funciona-section {
    background-color: #ffffff; /* Define a cor de fundo como branco */
}
.como-funciona-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.passo-item {
    text-align: center;
    flex: 1;
}
.passo-item .passo-icon-img {
    width: 100px;
    height: 100px;
    object-fit: contain; 
    margin: 0 auto 20px auto; 
}
.passo-item h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}
.passo-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* ================================================= */
/* === Diferenciais Section === */
/* ================================================= */
.diferenciais-section {
    padding: 60px 0;
    background-color: #ffffff; 
}
.diferenciais-grid-new {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 60px;
}
.diferenciais-image-col img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}
.diferencial-item-new {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}
.diferencial-item-new:last-child {
    margin-bottom: 0;
}
.diferencial-item-new .diferencial-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background-color: rgba(43, 86, 191, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.diferencial-item-new .diferencial-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary-color);
}
.diferencial-item-new h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}
.diferencial-item-new p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* ================================================= */
/* === Planos Section === */
/* ================================================= */
.planos-section {
    padding-top: 60px;
    padding-bottom: 60px; /* Opcional: Adiciona um espaçamento inferior para a cor preencher melhor a seção */
    background-color: #ffffff; /* Adicione esta linha com a cor desejada (ex: branco) */
}
.planos-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.plano-toggle-btn {
    flex: 1;
    padding: 15px 20px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all .3s ease;
}
.plano-toggle-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}
.plano-toggle-btn:first-child {
    border-right: 1px solid var(--border-color);
}
.plano-content {
    display: none;
}
.plano-content.active {
    display: block;
}
.plano-card {
    background-color: #F0F8FF; /* Azul ultra claro */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.plano-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}
.plano-card ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}
.plano-card li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}
.plano-card li:last-child {
    border-bottom: none;
}
.plano-card li svg {
    color: var(--primary-color);
    flex-shrink: 0;
}
.plano-card .ideal-para {
    margin-top: 20px;
    padding: 15px;
    background-color: transparent; /* Fundo fica igual ao do card */
    border-radius: 8px;
    font-weight: 500;
}

/* ============================================================= */
/* === Seção Métricas e Depoimentos === */
/* ============================================================= */
.testimonial-metrics-section {
    background: linear-gradient(180deg, #EEF3FB 100%, var(--light-gray-color) 100%);
    padding: 60px 0;
    overflow: hidden;
}

/* Regras separadas e corrigidas */
.testimonial-metrics-section .tm-metrics-side .section-title {
    color: #000000;
}

.testimonial-metrics-section .tm-metrics-side .section-subtitle {
    color: #000000;
}

.tm-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.tm-metrics-side .section-title,
.tm-metrics-side .section-subtitle {
    text-align: left; /* Mantém o alinhamento padrão para desktop */
    margin-left: 0;
    margin-right: 0;
}

.tm-testimonials-side {
    position: relative;
    min-width: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

.metric-item .metric-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    display: block;
}

.metric-item .metric-label {
    font-size: 1rem;
    color: #000000;
    margin-top: 8px;
}

.testimonial-carousel-wrapper {
    position: relative;
}

.testimonial-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 4px;
}

.testimonial-carousel-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(50% - 10px);
    scroll-snap-align: start;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    padding-top: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.testimonial-card .card-quote-icon {
    position: absolute;
    top: -10px;
    right: 25px;
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
    user-select: none;
}

.testimonial-card .card-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
    min-height: 120px;
}

.testimonial-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.testimonial-card .author-info strong {
    font-size: 1.1rem;
    color: var(--dark-color);
    display: block;
    margin-bottom: 4px;
}

.testimonial-card .stars {
    color: var(--yellow-color);
}

.testimonial-card .card-footer {
    font-size: 0.85rem;
    color: #888;
}

.carousel-nav {
    display: none;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: #fff;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.prev-btn { left: -22px; }
.next-btn { right: -22px; }



/* ================================================= */
/* === Seção de FAQ e CTA Final === */
/* ================================================= */
.faq-section {
    padding-top: 60px;
    padding-bottom: 60px; /* Opcional: Adiciona um espaçamento inferior para um visual mais equilibrado */
    background-color: #ffffff; /* Adicione esta linha com a cor desejada (ex: branco) */
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}
.faq-pergunta {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-out, margin-top .5s ease-out;
    color: var(--text-color);
    line-height: 1.7;
    padding-right: 20px;
}
.faq-pergunta .icon {
    font-size: 1.5rem;
    transition: transform .3s ease;
}
.faq-item.active .faq-pergunta .icon {
    transform: rotate(45deg);
}
.final-cta-section {
    background-image: url('../images/backgroundhero1.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 60px 0 30px;
}
.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 86, 191, 0.55);
    z-index: -1;
}
.final-cta-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.final-cta-section p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

/* ================================================= */
/* === Footer / Rodapé === */
/* ================================================= */
.lp-footer {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 50px 0;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.8;
}
.footer-logo img {
    max-height: 45px;
    margin-bottom: 25px;
    opacity: 0.9;
}
.footer-info p {
    margin-bottom: 10px;
}
.footer-info p:last-child {
    margin-bottom: 0;
}
.footer-info strong {
    color: #fff;
}
.footer-info a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}
.footer-info a:hover {
    text-decoration: none;
}

/* ================================================= */
/* === Media Queries / Responsividade === */
/* ================================================= */
@media (min-width: 992px) {
    .carousel-nav {
        display: block;
    }
}

@media (max-width: 991px) {
    .tm-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .tm-metrics-side .section-title,
    .tm-metrics-side .section-subtitle {
        text-align: center;
    }

    .testimonial-card {
        flex: 0 0 80%;
    }
    
    .diferenciais-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .diferenciais-image-col {
        order: -1; /* Move a imagem para cima */
        text-align: center;
    }
    .diferenciais-image-col img {
        max-width: 400px;
    }
    .diferenciais-content-col .section-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    body.nav-open {
        overflow: hidden; /* Impede o scroll da página quando o menu está aberto */
    }

    section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }

/* DENTRO DO ARQUIVO style.css, na seção @media (max-width: 767px) */

/* === Header Mobile === */
.site-header {
    top: 0;                     /* NOVO: Encosta o header no topo da tela */
    padding: 0;                 /* NOVO: Remove espaçamentos laterais */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Opcional: Adiciona uma sombra sutil para separar do conteúdo */
}

.header-container {
    /* Regras de alinhamento que já fizemos */
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    /* --- NOVO: Regras para ocupar 100% da largura --- */
    max-width: 100%;
    margin: 0;
    border-radius: 0; /* Remove as bordas arredondadas */
    border: none;     /* Remove a borda que o cerca */
    box-shadow: none; /* Remove a sombra flutuante */
    
    /* Ajuste final de padding (espaçamento interno) */
    padding: 20px 15px; /* ALTERADO: Aumentei o padding vertical para 20px */
}
.site-logo img {
    height: 35px;
}

.header-cta {
    display: none; /* Esconde o botão "Fale Conosco" */
}

.mobile-nav-toggle {
    display: flex; /* Mostra o botão hambúrguer */
}
.header-nav {
    display: none; /* Esconde a navegação por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
body.nav-open .header-nav {
    display: flex; /* Mostra a navegação quando o menu está aberto */
}
.header-nav ul {
    flex-direction: column;
    gap: 40px;
}
.header-nav a {
    font-size: 1.5rem;
    font-weight: 600;
}
    /* === Hero Section (Mobile) === */
    .hero-section-new {
        padding-top: 100px;
    }
    .hero-section-new .container-new {
        flex-direction: column;
        text-align: center;
    }
    .hero-section-new .hero-image-wrapper {
        display: none !important;
    }
    .hero-section-new .hero-content {
        max-width: 100%;
        padding-left: 0;
    }
    .hero-section-new .hero-title {
        font-size: 2.2rem;
    }
    .hero-section-new .value-props {
        justify-content: center;
    }

    /* === Outras seções (Mobile) === */
    .comparison-grid {
        flex-direction: column;
    }
    .comparison-visual {
        margin-bottom: 30px;
        width: 100%;
    }
    .comparison-content .comparison-title, .comparison-content .comparison-text {
        text-align: center;
    }
    .insurer-card.highlighted {
        transform: scale(1.05);
    }
    .comparison-content .hero-cta-button {
        align-self: center;
    }
     .comparison-content .comparison-title {
        font-size: 2rem;
    }
    .como-funciona-grid { 
        flex-direction: column;
    }
    .metric-item .metric-number {
        font-size: 2.2rem;
    }
    .plano-toggle-btn {
        font-size: 1rem;
        padding: 12px 10px;
    }
}

@media (max-width: 575px) {
    .testimonial-card {
        flex: 0 0 90%;
    }
}

/* ================================================= */
/* === VERSÃO EXPERT CONVERSION - by Gemini Designer === */
/* ================================================= */

/* --- Paleta de Cores e Variáveis Globais --- */
:root {
    --primary-color-blue: #0055FF;
    --primary-color-blue-hover: #0044CC;
    --accent-color-teal: #17A2B8; /* NOVO: Verde-Água para destaques */
    --secondary-color-gray: #5A677D;
    --border-color: #DCE0E6;
    --text-color-dark: #0C2340;
    --white-bg: #FFFFFF;
    --footer-bg-gray: #424242; /* NOVO: Cinza médio para o rodapé */
    --error-color: #dc3545;
}

/* --- Estilos da Página com Gradiente Suave --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F9FA; /* Cor de fallback */
    background: linear-gradient(180deg, #FDFEFF 0%, #F5F7FA 100%);
    color: var(--text-color-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* === TÍTULO PRINCIPAL E LOGOS DAS SEGURADORAS (REESTRUTURADO) === */

/* NOVA CLASSE: Apenas para o contêiner do título no topo */
.headline-container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 40px auto; /* Margem inferior para espaçar do formulário */
    box-sizing: border-box;
    text-align: left;
}

/* CLASSE EXISTENTE: Agora formata apenas o carrossel de logos abaixo do formulário */
.logo-carousel-container {
    width: 100%;
    max-width: 680px; /* Mantém a largura máxima */
    margin: 40px auto 0 auto; /* Margem superior para espaçar do formulário */
    box-sizing: border-box;
}

.main-headline {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-color-dark);
    margin-top: 0;
    margin-bottom: 0; /* A margem agora é controlada pelo container */
    line-height: 1.3;
}

.main-headline .highlight-blue {
    color: var(--primary-color-blue);
}

.main-headline .highlight-teal {
    color: var(--accent-color-teal);
}

.logo-carousel { width: 100%; overflow: hidden; position: relative; }
.logo-carousel-inner { display: flex; }
.logo-item { box-sizing: border-box; flex-shrink: 0; padding: 0 15px; display: flex; align-items: center; justify-content: center; }

/* LOGOS COM CORES ORIGINAIS E EFEITO SUAVE */
.logo-item img {
    height: 35px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    opacity: 1; /* Cores originais visíveis */
    transition: all 0.3s ease;
    filter: none;
}

.logo-item img:hover {
    transform: scale(1.05);
}
/* ================================================= */

/* --- Container Principal do Formulário --- */
.form-container {
    background-color: var(--white-bg);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(12, 35, 64, 0.08);
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #E9ECEF;
}

/* --- Cabeçalho do Formulário (Títulos Internos) --- */
#form-header { text-align: left; margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 25px; }
#form-step-title { font-size: 2rem; font-weight: 700; color: var(--text-color-dark); margin: 0; line-height: 1.2; }
#form-step-subtitle { font-size: 1.1rem; color: var(--secondary-color-gray); line-height: 1.5; margin-top: 8px; }

/* --- Barra de Progresso com Microanimação --- */
.progress-bar-container { width: 100%; height: 6px; background-color: #E9ECEF; border-radius: 3px; margin-bottom: 30px; }
.progress-bar { width: 0%; height: 100%; background: linear-gradient(90deg, var(--primary-color-blue), #5E95FF); border-radius: 3px; transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1); }

/* --- Estilos Gerais dos Passos do Formulário --- */
.form-step { display: none; text-align: left; }
.form-step.active { display: block; animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* CENTRALIZAÇÃO DA PRIMEIRA PERGUNTA */
.form-step[data-step-name="tipo-seguro"] .choice-group {
    justify-content: center;
}

.form-group { margin-bottom: 25px; }
.legend-subtitle { text-align: left; color: var(--secondary-color-gray); margin-top: -15px; margin-bottom: 20px; font-size: 0.95rem; }
fieldset.form-group { border: none; padding: 0; margin: 0; margin-bottom: 25px; }

/* --- Inputs, Selects e Botões --- */
input[type="text"], input[type="email"], input[type="tel"], .form-select { width: 100%; padding: 16px; border: 1px solid var(--border-color); border-radius: 12px; font-size: 1rem; box-sizing: border-box; transition: all 0.3s; background-color: #F8F9FA; }
input:focus, .form-select:focus { outline: none; border-color: var(--primary-color-blue); box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.15); background-color: var(--white-bg); }
.error-message { color: var(--error-color); font-size: 0.875rem; margin-top: 8px; font-weight: 500; min-height: 1.2em; text-align: left; padding-left: 5px; }

/* Navegação (Botão Avançar - CTA de Alto Contraste) */
.form-navigation { display: flex; justify-content: flex-end; margin-top: 40px; padding-top: 20px; }
.btn-primary { background-color: var(--primary-color-blue); color: #fff; padding: 16px 35px; border: none; border-radius: 12px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 85, 255, 0.2); }
.btn-primary:hover { background-color: var(--primary-color-blue-hover); transform: translateY(-3px) scale(1.02); box-shadow: 0 6px 20px rgba(0, 85, 255, 0.3); }
.btn-primary:disabled { background-color: #a0c7f0; cursor: wait; transform: none; box-shadow: none; }
.btn-secondary { background-color: transparent; color: var(--secondary-color-gray); border: none; text-decoration: underline; padding: 10px; margin-top: 10px; cursor: pointer; }
.btn-secondary:hover { color: var(--primary-color-blue); }

/* --- Estilos de Opções (Cards e Rádios) --- */
.choice-group { display: flex; flex-wrap: wrap; gap: 15px; justify-content: flex-start; }
.choice-label { padding: 16px 25px; border: 2px solid var(--border-color); border-radius: 12px; cursor: pointer; transition: all 0.2s ease-in-out; background-color: var(--white-bg); }
.choice-label input { display: none; }
.choice-label span { font-weight: 600; font-size: 1rem; }
.choice-label:hover { transform: translateY(-2px); border-color: var(--primary-color-blue); }
.choice-label:has(input:checked) { background-color: #F0F6FF; border-color: var(--primary-color-blue); color: var(--primary-color-blue); }
.choice-label:has(input:checked) span { font-weight: 700; }

.choice-grid-full { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.choice-card-label { display: flex; flex-direction: column; text-align: left; padding: 20px; border: 2px solid var(--border-color); border-radius: 16px; cursor: pointer; transition: all 0.2s ease-in-out; background-color: #fff; }
.choice-card-label:hover { transform: translateY(-3px); border-color: var(--primary-color-blue); box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
.choice-card-label input { display: none; }
.choice-card-label:has(input:checked) { background-color: #F0F6FF; border-color: var(--primary-color-blue); }
.choice-card-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; color: var(--text-color-dark); }
.choice-card-subtitle { font-size: 1rem; color: var(--secondary-color-gray); }

.center-checkbox { justify-content: flex-start; margin-top: 20px; }
.single-checkbox label { font-size: 1rem; font-weight: 500; }
.form-group-center { max-width: 100%; margin: 0; }

/* --- Telas de Loading e Sucesso --- */
#loading-screen, #success-message { text-align: center; padding: 50px 20px; }
.spinner { width: 56px; height: 56px; border: 8px solid #e9ecef; border-top-color: var(--primary-color-blue); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 25px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { font-size: 1.2rem; font-weight: 500; color: var(--secondary-color-gray); }

#success-message h2 { font-size: 1.8rem; font-weight: 700; }
.feedback-list { list-style: none; padding: 0; margin-top: 25px; text-align: left; max-width: 450px; margin-left: auto; margin-right: auto; }
.feedback-list li { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; margin-bottom: 15px; opacity: 0; transform: translateY(15px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.feedback-list li.visible { opacity: 1; transform: translateY(0); }
.feedback-list li::before { content: '✅'; font-size: 1.2rem; }

/* --- Acessibilidade --- */
.form-step > .form-group > legend, .form-step > .form-group > label, .form-step > legend { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* --- Layout Principal & Helpers --- */
.main-content { flex-grow: 1; display: flex; flex-direction: column; align-items: center; padding: 40px 0; box-sizing: border-box; }
.page-center-wrapper { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 680px; padding: 0 15px; box-sizing: border-box; margin-top: 0; }

/* --- NOVO FOOTER (RODAPÉ) --- */
.lp-footer {
    background-color: var(--footer-bg-gray);
    color: #E0E0E0; /* Cor de texto mais suave para o fundo escuro */
    padding: 40px 15px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.7;
}
.lp-footer a {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 500;
}
.lp-footer strong {
    color: #FFFFFF;
}

/* --- Otimizações Mobile --- */
@media (max-width: 600px) {
    body { background: var(--white-bg); }
    .main-content { padding: 20px 0; }
    .page-center-wrapper { max-width: 100%; }
    .headline-container,
    .logo-carousel-container { text-align: center; }
    .main-headline { font-size: 1.8rem; text-align: center; }
    .form-container { box-shadow: none; border: none; border-radius: 0; padding: 20px; }
    #form-step-title { font-size: 1.8rem; }
    .choice-grid-full { grid-template-columns: 1fr; }
    .feedback-list li { font-size: 1rem; }
}

/* === ESTILOS ADICIONAIS PARA O FOOTER COM LOGO SUSEP === */

/* 1. Torna o footer um container para o posicionamento da imagem */
.lp-footer {
    position: relative;
}

/* 2. Estilos para o container da imagem da SUSEP */
.footer-susep-logo {
    position: absolute; /* Posicionamento absoluto em relação ao footer */
    right: 30px;      /* Distância da direita */
    top: 50%;         /* Alinha o topo do container ao meio do footer */
    transform: translateY(-50%); /* Ajusta a posição vertical para o centro exato */
}

/* 3. Estilos para a imagem em si */
.footer-susep-logo img {
    height: 60px; /* Altura da imagem */
    width: auto;  /* Largura automática para manter a proporção */
}

/* 4. Ajuste para telas pequenas (Mobile) */
@media (max-width: 768px) {
    .lp-footer {
        /* No mobile, removemos o posicionamento para empilhar os itens */
        position: static; 
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Adiciona um espaço entre o texto e a imagem */
    }

    .footer-susep-logo {
        /* Reseta os estilos de posicionamento no mobile */
        position: static;
        transform: none;
        right: auto;
        top: auto;
    }
}

/* ================================================= */
/* ===    DESIGN MODERNO E LIMPO PARA FORM MOTO    === */
/* ================================================= */
:root {
    --primary-color-blue: #0055FF;
    --primary-color-blue-hover: #0044CC;
    --highlight-color-orange: #FF6F00;
    --secondary-color-gray: #5A677D;
    --border-color: #EAECEF;
    --input-bg-color: #F8F9FA;
    --text-color-dark: #0C2340;
    --white-bg: #FFFFFF;
    --error-color: #E53E3E;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--input-bg-color);
    color: var(--text-color-dark);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    box-sizing: border-box;
    min-height: calc(100vh - 250px);
}
.headline-container {
    max-width: 680px;
    margin: 0 auto 50px auto;
    text-align: left;
}
.main-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}
.main-headline .highlight-blue { color: var(--primary-color-blue); }
.main-headline .highlight-orange { color: var(--highlight-color-orange); }
.page-center-wrapper { width: 100%; }
.form-container {
    background-color: var(--white-bg);
    padding: 40px 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(12, 35, 64, 0.08);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
}
#form-header { text-align: left; margin-bottom: 30px; }
#form-step-title { font-size: 2rem; font-weight: 700; }
#form-step-subtitle { color: var(--secondary-color-gray); margin-top: 5px; }
.progress-bar-container { width: 100%; height: 8px; background-color: var(--border-color); border-radius: 4px; margin-bottom: 30px; }
.progress-bar { width: 0%; height: 100%; background-color: var(--primary-color-blue); border-radius: 4px; transition: width 0.5s ease-out; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.form-group { margin-bottom: 25px; }
.legend-subtitle { text-align: left; color: var(--secondary-color-gray); margin-top: -15px; margin-bottom: 20px; font-size: 0.95rem; }
fieldset.form-group { border: none; padding: 0; margin: 0; }
.sr-only {
    border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;
}
.form-step > legend { font-size: 1.25rem; font-weight: 600; margin-bottom: 25px; text-align: left; }
input[type="text"], input[type="email"], input[type="tel"], .form-select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s;
    background-color: var(--input-bg-color);
}
input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-color-blue);
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.15);
    background-color: var(--white-bg);
}
.form-navigation { display: flex; justify-content: flex-end; margin-top: 40px; padding-top: 20px; }
.btn-primary {
    background-color: var(--primary-color-blue);
    color: #fff;
    padding: 16px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.2);
}
.btn-primary:hover { background-color: var(--primary-color-blue-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 85, 255, 0.25); }
.btn-secondary { background-color: transparent; color: var(--secondary-color-gray); border: none; padding: 10px; cursor: pointer; font-weight: 500; transition: color 0.2s; }
.btn-secondary:hover { color: var(--primary-color-blue); }
.btn-secondary-main {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--secondary-color-gray);
    font-weight: 600;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-secondary-main:hover {
    background-color: var(--input-bg-color);
    border-color: var(--secondary-color-gray);
}
.choice-group { display: flex; flex-wrap: wrap; gap: 15px; }
.choice-group-center { justify-content: center; }
.choice-label { padding: 16px 25px; border: 2px solid var(--border-color); border-radius: 12px; cursor: pointer; transition: all 0.2s ease-in-out; }
.choice-label input { display: none; }
.choice-label:hover { transform: translateY(-2px); border-color: var(--primary-color-blue); }
.choice-label:has(input:checked) { background-color: #F0F6FF; border-color: var(--primary-color-blue); color: var(--primary-color-blue); }
.choice-grid-full { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.choice-card-label { display: flex; flex-direction: column; text-align: left; padding: 20px; border: 2px solid var(--border-color); border-radius: 16px; cursor: pointer; transition: all 0.2s ease-in-out; }
.choice-card-label:hover { transform: translateY(-3px); border-color: var(--primary-color-blue); box-shadow: 0 8px 20px rgba(0,0,0,0.04); }
.choice-card-label input { display: none; }
.choice-card-label:has(input:checked) { background-color: #F0F6FF; border-color: var(--primary-color-blue); }
.choice-card-title { font-weight: 700; font-size: 1.1rem; }
.choice-card-subtitle { font-size: 1rem; color: var(--secondary-color-gray); }
.single-checkbox label { font-size: 1rem; font-weight: 500; }
.center-checkbox { justify-content: flex-start; margin-top: 20px; }
.hidden { display: none; }
#manufacturer-selection-view, #model-selection-view {
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.5s ease;
    transform-origin: top;
    will-change: opacity, transform;
}
#manufacturer-selection-view.fade-out, #model-selection-view.fade-out {
    opacity: 0;
    transform: scale(0.98);
    max-height: 0px !important;
    pointer-events: none;
    overflow: hidden;
}
.manufacturer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-bottom: 10px;
}
.manufacturer-card-label {
    display: flex;
    align-items: center; justify-content: center;
    padding: 10px; 
    border: 2px solid var(--border-color);
    border-radius: 16px; cursor: pointer;
    transition: all 0.2s ease-in-out; 
    height: 80px;
}
.manufacturer-card-label:hover {
    transform: translateY(-3px); border-color: var(--primary-color-blue);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}
.manufacturer-card-label input { display: none; }
.manufacturer-card-label:has(input:checked) { border-color: var(--primary-color-blue); background-color: #F0F6FF; }
.manufacturer-card-label img {
    width: 90px;
    height: auto; 
    max-height: 60px; 
    object-fit: contain; 
}
.moto-details-container {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 15px; align-items: start; margin-bottom: 15px;
}
#voltarFabricanteBtn { font-size: 0.9rem; padding: 5px; }
#loading-screen, #success-message { text-align: center; padding: 50px 20px; }
.spinner { width: 56px; height: 56px; border: 8px solid var(--border-color); border-top-color: var(--primary-color-blue); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 25px; }
@keyframes spin { to { transform: rotate(360deg); } }
#success-message h2 { font-size: 1.8rem; font-weight: 700; }
.feedback-list { list-style: none; padding: 0; margin-top: 25px; text-align: left; max-width: 450px; margin-left: auto; margin-right: auto; }
.feedback-list li { 
    font-size: 1.1rem; 
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.feedback-list li.visible {
    opacity: 1;
    transform: translateY(0);
}
.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 8px;
    font-weight: 500;
    min-height: 1.2em;
    text-align: left;
}
@media (max-width: 600px) {
    body { background: var(--white-bg); }
    .main-content { padding: 20px 0; min-height: 0; }
    .headline-container { text-align: center; max-width: 100%; padding: 0 15px; }
    .main-headline { font-size: 1.8rem; text-align: center; }
    .form-container { box-shadow: none; border: none; border-radius: 0; padding: 20px; }
    #form-step-title { font-size: 1.8rem; }
    .choice-grid-full { grid-template-columns: 1fr; }
    .moto-details-container { grid-template-columns: 1fr; }
}
/* ============================================= */
/* === ESTILOS DO RODAPÉ (VERSÃO CORRIGIDA) === */
/* ============================================= */

/* Estilos para o container principal do rodapé (Desktop) */
.lp-footer {
    background-color: #212529; /* CORREÇÃO: Cor de fundo escura aplicada diretamente */
    color: #E9ECEF;            /* Cor do texto principal */
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;         /* Essencial para o posicionamento absoluto do logo */
    min-height: 120px;          /* Garante espaço vertical para o logo */
    display: flex;              /* Usado para centralizar o conteúdo de texto */
    align-items: center;        /* Alinha verticalmente o conteúdo de texto */
    justify-content: center;    /* Alinha horizontalmente o conteúdo de texto */
}

/* Estilos para os links dentro do rodapé */
.lp-footer a {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 500;
}

/* Estilos para texto em negrito (como o nome da empresa) */
.lp-footer strong {
    color: #FFFFFF;
}

/* Posicionamento do logo da SUSEP (Desktop) */
.footer-susep-logo {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-susep-logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* Ajustes para telas pequenas (Mobile) */
@media (max-width: 768px) {
    .lp-footer {
        flex-direction: column;
        gap: 20px; /* Espaço entre o bloco de texto e o logo */
        min-height: 0;
        padding: 30px 15px;
    }

    .footer-susep-logo {
        /* Reseta o posicionamento para que o logo se comporte como um item normal */
        position: static;
        transform: none;
    }
}

/* ================================================================ */
/* ===         CÓDIGO COMPLETO: PÁGINA DE SEGURADORAS             === */
/* ================================================================ */

/* --- 1. CORREÇÃO DE ESPAÇAMENTO PARA O HEADER FLUTUANTE --- */

.page-seguradoras .main-content {
    padding-top: 140px; 
    padding-bottom: 0; /* Removido para o CTA controlar o espaçamento inferior */
}
@media (max-width: 767px) {
    .page-seguradoras .main-content {
        padding-top: 110px;
    }
}

/* --- 2. ESTILO DOS TÍTULOS E CARDS --- */

.hero-section {
    text-align: center; /* Centraliza o título e subtítulo */
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color-dark);
    margin-bottom: 15px;
}

.hero-section .subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color-gray);
    max-width: 650px;
    margin: 0 auto; /* Centraliza o subtítulo */
}

.seguradoras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.seguradora-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(12, 35, 64, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.seguradora-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s ease-in-out;
}

.seguradora-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 45px 0 rgba(12, 35, 64, 0.12);
}

.seguradora-card:hover::before {
    left: 150%;
}
    
.seguradora-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.seguradora-card img {
    height: 45px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: 20px; /* Ajustado */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

/* Estilo para o novo título H3 dentro do card */
.seguradora-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color-dark, #0C2340);
    margin: 0 0 10px 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilo para a descrição do card */
.seguradora-card p {
    font-size: 0.95rem;
    color: var(--secondary-color-gray);
    line-height: 1.7;
}

/* --- 3. NOVO ESTILO PARA A SEÇÃO CTA (FINAL DA PÁGINA) --- */

.cta-section {
    background-color: #f8f9fa; /* Cor de fundo suave, igual ao body */
    padding: 80px 20px;
    margin-top: 80px; /* Espaçamento acima da seção */
    text-align: center;
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--secondary-color-gray);
}

.cta-button-seguradoras {
    background-color: var(--primary-color-blue);
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.2);
}

.cta-button-seguradoras:hover {
    background-color: var(--primary-color-blue-hover);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.2rem; }
    .hero-section .subtitle, .cta-section p { font-size: 1rem; }
    .cta-section h2 { font-size: 1.8rem; }
}

/* ================================================================ */
/* ===         CÓDIGO COMPLETO: PÁGINA DE TELEFONES (v2)          === */
/* ================================================================ */

/* --- 1. LAYOUT GERAL E ESPAÇAMENTO --- */

.page-telefones .main-content {
    padding-top: 140px; 
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    .page-telefones .main-content {
        padding-top: 110px;
        padding-bottom: 60px;
    }
}

/* --- 2. GRID E CARDS DE CONTATO --- */

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

.telefone-card {
    background-color: #fff;
    border: 1px solid var(--border-color, #EAECEF);
    border-radius: 16px;
    padding: 35px; /* ALTERADO: Aumentado de 25px para 35px para deixar o card maior */
    text-align: center;
    box-shadow: 0 8px 25px rgba(12, 35, 64, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px; /* NOVO: Adiciona uma altura mínima para padronizar os cards */
}

.telefone-card img {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    margin: 0 auto 15px auto;
}

.telefone-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color-dark, #0C2340);
    margin: 0 0 20px 0;
}

/* --- 3. BOTÕES DE CONTATO --- */

.card-buttons {
    display: flex;
    gap: 15px;
    margin-top: auto; 
}

.btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 55px; /* NOVO: Garante que todos os botões tenham a mesma altura */
    line-height: 1.2; /* NOVO: Melhora o alinhamento de textos com duas linhas */
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0; /* NOVO: Impede que o ícone seja espremido */
}

.btn.full-width {
    flex-basis: 100%; 
}

/* Estilo do botão de Telefone */
.btn-telefone {
    background-color: var(--primary-color-blue, #0055FF);
    color: #fff;
}

/* Estilo do botão de WhatsApp */
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

/* =================================================================
   ESTILO COMPLETO PARA PÁGINAS DE SEGURADORAS V2.1
   ================================================================= */

:root {
    --section-bg-light-blue: #f7f9fc; /* Cor de fundo suave inspirada no azul */
}

/* --- Cores de Fundo e Layout Geral --- */
.seguradora-page .planos-section,
.seguradora-page .comparison-section {
    background-color: var(--section-bg-light-blue);
}

.seguradora-page .diferenciais-section,
.seguradora-page .faq-section {
    background-color: #fff;
}

.seguradora-page .hero-section-new {
    padding-top: 60px;
    padding-bottom: 60px;
}

.seguradora-page .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color-dark);
}

.seguradora-page .section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color-gray);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

/* --- Grid e Cards de Cobertura (Estilo Final - Opção 1) --- */
.planos-grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.seguradora-page .plano-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(12, 35, 64, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seguradora-page .plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(12, 35, 64, 0.08);
}

.seguradora-page .plano-card h3 {
    font-size: 1.5rem;
    color: var(--text-color-dark);
    margin-bottom: 10px;
}

.seguradora-page .plano-card .subtitulo {
    color: var(--secondary-color-gray);
    font-size: 1rem;
    margin-bottom: 20px;
    min-height: auto;
}

.seguradora-page .plano-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seguradora-page .plano-card ul li {
    display: flex;
    align-items: center; /* Centraliza ícone e texto verticalmente */
    gap: 12px;
    margin-bottom: 15px;
}

.seguradora-page .plano-card ul li svg {
    flex-shrink: 0;
    color: var(--primary-color-blue);
    width: 24px;
    height: 24px;
}

.seguradora-page .plano-card ul li div {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 1.05rem;
    color: var(--text-color-dark);
}

.seguradora-page .plano-card ul li strong {
    font-weight: 700;
}

.seguradora-page .plano-card ul li span {
    font-weight: 400;
    color: var(--secondary-color-gray);
    line-height: 1.5;
}

.seguradora-page .plano-card .ideal-para {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--secondary-color-gray);
    line-height: 1.6;
}

/* --- Grid e Cards de Vantagens/Diferenciais --- */
.diferenciais-grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.diferencial-item-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.diferencial-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12, 35, 64, 0.07);
}

.diferencial-item-card .diferencial-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6f0ff;
    margin-bottom: 20px;
}

.diferencial-item-card .diferencial-icon svg {
    color: var(--primary-color-blue);
    width: 24px;
    height: 24px;
}

.diferencial-item-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color-dark);
}

.diferencial-item-card p {
    font-size: 0.95rem;
    color: var(--secondary-color-gray);
    line-height: 1.6;
    flex-grow: 1;
}

/* --- Seção de CTA (Call to Action) Centralizada --- */
.seguradora-page .comparison-section .comparison-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.seguradora-page .comparison-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.seguradora-page .comparison-section .comparison-text {
    margin-bottom: 30px;
}

/* --- Espaçamento Padrão das Seções --- */
.seguradora-page .planos-section,
.seguradora-page .diferenciais-section,
.seguradora-page .comparison-section,
.seguradora-page .faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* --- Responsividade para Dispositivos Móveis --- */
@media (max-width: 992px) {
    .planos-grid-2-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .seguradora-page .section-title {
        font-size: 1.8rem;
    }

    .seguradora-page .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .diferenciais-grid-3-cols {
        grid-template-columns: 1fr;
    }

    .seguradora-page .plano-card ul li div {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .seguradora-page .plano-card ul li span {
        margin-top: 5px;
    }

    .seguradora-page .planos-section,
    .seguradora-page .diferenciais-section,
    .seguradora-page .comparison-section,
    .seguradora-page .faq-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px; /* Evita que o texto apareça durante a transição */
}

.faq-item.active .faq-resposta {
    padding: 20px;
    max-height: 500px; /* Um valor alto para garantir que o conteúdo caiba */
    transition: max-height 0.5s ease-in;
}

.faq-item.active .icon {
    transform: rotate(45deg); /* Gira o ícone '+' para 'x' */
}