/* css/style.css - Estilos Gerais e Mobile-First para Maireno Seguros */

:root {
    --primary-color: #0c2340;    /* Azul Escuro Corporativo Profissional */
    --secondary-color: #0056b3;  /* Azul de Ação/Destaque */
    --accent-color: #25d366;     /* Verde WhatsApp */
    --text-color: #212529;       /* Grafite Escuro */
    --bg-light: #fafbfc;         /* Fundo Claro para Respiros */
    --bg-white: #ffffff;
    --border-radius: 12px;       /* Bordas Arredondadas Modernas */
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}

body {
    background-color: var(--bg-white);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #6c757d;
    font-size: 1rem;
}

/* HEADER STYLE */
.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.site-logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--secondary-color);
}

.btn-nav-cta {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav-cta:hover {
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- HERO SECTION COM IMAGEM DE FUNDO --- */

.hero {
    position: relative;
    overflow: hidden;
    /* Substitua pelo caminho correto da sua imagem limpa */
    background-image: url('/assets/img/hero.jpg'); 
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 120px 0;
    display: flex;
    align-items: center;
    min-height: 550px;
}

/* Camada suave para garantir a leitura do texto sobre a imagem */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
    z-index: 2;
}

.hero-text {
    max-width: 580px;
    text-align: left;
}

.hero-text h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a4568;
    margin-bottom: 20px;
}

.hero-text h1 span {
    display: block;
    color: #1ca9c9;
    font-size: 2.4rem;
}

.hero-text .subtitulo {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 25px;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    gap: 20px;
}

.hero-benefits li {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-benefits li i {
    color: #1ca9c9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #1ca9c9;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #15839c;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-2px);
}

/* --- RESPONSIVO --- */

@media (max-width: 991px) {
    .hero {
        padding: 80px 0;
        background-position: center;
    }

    .hero-overlay {
        background: rgba(255, 255, 255, 0.9); /* Escurece/clareia o fundo de forma uniforme no mobile */
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text h1 span {
        font-size: 2rem;
    }

    .hero-benefits {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text h1 span {
        font-size: 1.6rem;
    }

    .cta-buttons a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}


/* ==========================================================================
   SEÇÃO SOBRE A EMPRESA - DESIGN PREMIUM REESTRUTURADO (INDEX.PHP)
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: stretch; /* Alinha o topo e a base das duas colunas de forma idêntica */
}

.about-text .section-tag {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 8px;
    background: rgba(0, 86, 179, 0.06);
    padding: 4px 12px;
    border-radius: 20px;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-text p {
    margin-bottom: 18px;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Pequena lista interna de pilares que enriquece o conteúdo visualmente */
.about-features-mini {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-features-mini li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-features-mini li i {
    color: #25d366; /* Verde sucesso */
    font-size: 1.1rem;
}

/* Bloco Avançado de Imagens com badges de credibilidade flutuantes */
.about-image-composition {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-main-sobre {
    width: 100%;
    max-width: 460px;
    height: 100%; /* Faz a imagem ocupar 100% da altura disponível da coluna */
    min-height: 480px; /* Garante uma altura mínima imponente para não amassar em telas médias */
    object-fit: cover; /* ESSENCIAL: Recorta e adapta a foto dinamicamente para não distorcer nem esticar as pessoas */
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(12, 35, 64, 0.08);
    transition: transform 0.3s ease;
}

/* Card flutuante de experiência em cima da imagem */
.badge-experience-floating {
    position: absolute;
    bottom: -20px;
    left: -10px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(12, 35, 64, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--secondary-color);
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-experience-floating i {
    font-size: 2.2rem;
    color: #ffaa00;
}

.badge-experience-floating div h4 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.badge-experience-floating div p {
    font-size: 0.75rem;
    color: #cbd5e0;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Animação suave de flutuação no badge */
@keyframes floatBadge {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Responsividade Adaptativa */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .about-text .section-tag {
        align-self: center;
    }
    .about-features-mini {
        justify-content: center;
        max-width: 450px;
        margin: 25px auto;
    }
    .about-features-mini li {
        text-align: left;
    }
    .img-main-sobre {
        height: 300px;
    }
    .badge-experience-floating {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        animation: none; /* Desativa no mobile para evitar conflitos de touch */
    }
}


/* ==========================================================================
   SEÇÃO DE SERVIÇOS - ATUALIZAÇÃO E MODERNIZAÇÃO (INDEX.PHP)
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(12, 35, 64, 0.08);
    border-color: var(--secondary-color);
}

.card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

/* Efeito sutil de gradiente sobre a imagem no hover */
.card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(12, 35, 64, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-img-wrapper::after {
    opacity: 1;
}

.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: color 0.2s ease;
}

.service-card:hover .card-body h3 {
    color: var(--secondary-color);
}

.card-body p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Botão interno de link rápido no rodapé do card */
.card-btn-link {
    align-self: flex-start;
    margin-top: auto; /* Garante que o botão alinhe sempre no rodapé mesmo com textos de tamanhos diferentes */
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.card-btn-link:hover {
    color: var(--primary-color);
    gap: 9px;
}

/* PARTNERS CAROUSEL */
.partners-carousel {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: inline-block;
    animation: scrollLogos 25s linear infinite;
}

.partners-carousel img {
    height: 60px;
    margin: 0 30px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partners-carousel img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SEÇÃO DE DEPOIMENTOS GOOGLE - VERSÃO PREMIUM LAUNCH (INDEX.PHP)
   ========================================================================== */

/* Cabeçalho estendido com painel de notas do Google Business */
.testimonials-headline-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 45px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.testimonials-title-side {
    max-width: 60%;
}

.testimonials-title-side .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.testimonials-title-side .section-subtitle {
    text-align: left;
    margin-bottom: 0;
}

/* Placar Compacto Live do Google */
.google-live-badge-home {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(12, 35, 64, 0.04);
}

.g-live-logo-side {
    font-size: 2.2rem;
    color: #4285f4;
}

.g-live-stars-side .g-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 5px;
}

.g-live-stars-side .stars-row {
    color: #fbbc05;
    font-size: 0.85rem;
    margin: 2px 0;
}

.g-live-stars-side span {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 600;
}

/* Grid de Cards com quebra organizada de 3 colunas */
.testimonials-multi-container {
    width: 100%;
    position: relative;
}

.testimonials-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(12, 35, 64, 0.06);
    border-color: #cbd5e1;
}

.google-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.g-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.g-avatar {
    width: 42px;
    height: 42px;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.g-user-info h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 700;
}

.g-date {
    font-size: 0.75rem;
    color: #a0aec0;
    display: block;
    font-weight: 500;
}

.text-google {
    color: #ea4335;
    font-size: 1.2rem;
}

.rating-stars {
    color: #fbbc05;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.review-text {
    font-style: normal;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Paginação responsiva inteligente via bolinhas */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
    width: 22px;
    border-radius: 4px;
}

/* RESPONSIVIDADE E ADAPTAÇÃO SMART PARA DISPOSITIVOS MÓVEIS */
@media (max-width: 992px) {
    .testimonials-headline-block {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
    }
    .testimonials-title-side {
        max-width: 100%;
    }
    .testimonials-title-side .section-title,
    .testimonials-title-side .section-subtitle {
        text-align: center;
    }
    .testimonials-multi-container {
        overflow: hidden;
    }
    .testimonials-grid-wrapper {
        display: flex;
        gap: 0;
    }
    .testimonial-card {
        min-width: 100%;
        box-sizing: border-box;
        border: none;
        background: #ffffff;
    }
    .carousel-dots {
        display: flex;
    }
}

/* BENEFITS SECTION */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.benefit-item {
    padding: 20px;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* CONTACT SECTION & FORM */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.info-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.info-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.info-badge-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.lead-form {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #1ebd59;
}

.address-text {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    background: var(--bg-white);
    padding: 15px;
    border-radius: var(--border-radius);
}

.address-text i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* FOOTER */
.main-footer {
    background-color: var(--primary-color);
    color: #adb5bd;
    padding: 60px 0 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    height: 45px;
    background: white;
    padding: 5px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.footer-links h3, .footer-legal h3 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a365d;
    padding-top: 20px;
    font-size: 0.85rem;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebd59;
}

/* RESPONSIVIDADE (MOBILE BREAKPOINTS) */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    .hero-image {
        width: 100%;
        min-height: 300px;
    }
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        display: none;
    }
    .nav-menu.active {
        display: flex;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .section {
        padding: 50px 0;
    }
}


/* ==========================================================================
   CSS COMPLEMENTAR - PÁGINA SOBRE A EMPRESA (MAIRENO SEGUROS)
   ========================================================================== */

/* 1. Hero da Página Interna */
.hero-interna {
    position: relative;
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, #0c2340 0%, #003366 100%);
    color: #ffffff;
    text-align: center;
}

.hero-interna-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-interna-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-interna h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-interna p {
    font-size: 1.15rem;
    color: #e0e6ed;
    line-height: 1.6;
}

/* 2. Grid de História / Sobre */
.sobre-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.sobre-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.sobre-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.box-shadow {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 3. Grid de Diferenciais */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.diferencial-card-item {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #0056b3;
    transition: transform 0.3s ease;
}

.diferencial-card-item:hover {
    transform: translateY(-5px);
}

.def-icon {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.diferencial-card-item h3 {
    font-size: 1.2rem;
    color: #0c2340;
    margin-bottom: 12px;
}

.diferencial-card-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* 4. Lista de Especialidades */
.especialidades-list-wrapper {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.especialidade-row-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.especialidade-row-item:last-child {
    border-bottom: none;
}

.especialidade-row-item i {
    font-size: 1.8rem;
    color: #0056b3;
    background: #e6f0fa;
    padding: 15px;
    border-radius: 50%;
    min-width: 55px;
    text-align: center;
}

.especialidade-row-item h3 {
    font-size: 1.2rem;
    color: #0c2340;
    margin-bottom: 5px;
}

.especialidade-row-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* 5. Bloco de Área de Atendimento */
.bg-light-blue {
    background-color: #f4f8fc;
}

.atendimento-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.atendimento-map-icon {
    font-size: 4rem;
    color: #0056b3;
}

.atendimento-content h2 {
    font-size: 1.6rem;
    color: #0c2340;
    margin-bottom: 10px;
}

.atendimento-content p {
    color: #4a5568;
    margin-bottom: 15px;
}

.atendimento-cidades-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
}

.atendimento-cidades-list li {
    font-weight: 500;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 8px;
}

.atendimento-cidades-list li i {
    color: #34a853;
}

/* 6. Seção CTA Final */
.section-cta-interna {
    background: #0c2340;
    padding: 60px 0;
    color: #ffffff;
}

.cta-interna-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-interna-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-interna-text p {
    color: #cbd5e0;
    font-size: 1.05rem;
}

.btn-primary-white {
    display: inline-block;
    background: #ffffff;
    color: #0c2340;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.btn-primary-white:hover {
    background: #e2e8f0;
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 991px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sobre-image-wrapper {
        order: -1; /* Joga a foto para cima em tablets e celulares */
    }
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .atendimento-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .atendimento-cidades-list {
        grid-template-columns: 1fr;
        text-align: left;
        display: inline-block;
    }
    .atendimento-cidades-list li {
        margin-bottom: 8px;
    }
    .cta-interna-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-interna h1 {
        font-size: 1.9rem;
    }
    .hero-interna p {
        font-size: 1rem;
    }
}



/* ==========================================================================
   CSS COMPLEMENTAR - PÁGINA DE COTAÇÃO EXCLUSIVA (MAIRENO SEGUROS)
   ========================================================================== */

/* Cabeçalho da área de cotação */
.cotacao-header {
    background: linear-gradient(135deg, #0c2340 0%, #002347 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.cotacao-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 10px 0;
}

.cotacao-header p {
    font-size: 1.1rem;
    color: #cbd5e0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Estrutura de colunas da página de cotação */
.cotacao-wrapper-page {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: start;
}

/* Card do formulário avançado */
.cotacao-form-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.form-instructions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
}

.form-instructions i {
    font-size: 2.2rem;
    color: #0056b3;
}

.form-instructions h3 {
    color: #0c2340;
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.form-instructions p {
    color: #718096;
    font-size: 0.9rem;
}

/* Linhas duplas para formulários de desktop */
.form-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lead-form-advanced textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
    resize: vertical;
    transition: var(--transition);
}

.lead-form-advanced textarea:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.dynamic-field {
    animation: fadeInField 0.3s ease-in-out;
}

@keyframes fadeInField {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-submit-advanced {
    width: 100%;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37,211,102,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-submit-advanced:hover {
    background-color: #1ebd59;
    transform: translateY(-1px);
}

/* Barra lateral informativa e contêiner do Mapa */
.sidebar-card-info {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

.sidebar-card-info h3 {
    color: #0c2340;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card-info p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sidebar-address-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
    font-size: 0.95rem;
}

.map-sidebar-container {
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

/* Responsividade da Página de Cotações */
@media (max-width: 992px) {
    .cotacao-wrapper-page {
        grid-template-columns: 1fr;
    }
    .form-row-double {
        grid-template-columns: 1fr;
        gap: 0;
    }
}



/* ==========================================================================
   CSS COMPLEMENTAR - PÁGINA DE SERVIÇOS DETALHADOS (MAIRENO SEGUROS)
   ========================================================================== */

/* Cabeçalho centralizado da vitrine */
.servicos-hero {
    background-color: #ffffff;
    padding: 60px 0 40px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.servicos-hero h1 {
    font-size: 2.6rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 15px 0 10px 0;
}

.servicos-hero p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 750px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

/* Menu de Abas Inteligentes */
.services-tabs-nav {
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 30px;
    gap: 5px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(12,35,64,0.15);
}

/* Lista / Grid de Layout de Serviços Estilo Portal */
.servicos-catalogo-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.item-servico-card {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.item-servico-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.item-servico-img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    position: relative;
}

.item-servico-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-servico-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.item-badge {
    position: absolute;
    top: 35px;
    right: 35px;
    background: #e6fffa;
    color: #00875a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
}

.item-servico-body h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    padding-right: 120px; /* Evita sobreposição com a badge */
}

.item-servico-body p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Micro-recursos internos do card */
.item-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.item-features span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.item-features i {
    color: #38a169;
}

/* Botão de Direcionamento interno */
.btn-card-servico {
    align-self: flex-start;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-card-servico:hover {
    background: var(--primary-color);
}

/* ==========================================================================
   Ajustes de Responsividade
   ========================================================================== */
@media (max-width: 992px) {
    .item-servico-card {
        grid-template-columns: 1fr; /* Transforma em bloco único vertical */
    }
    .item-servico-img {
        min-height: 200px;
        height: 200px;
    }
    .item-servico-body {
        padding: 25px;
    }
    .item-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
        align-self: flex-start;
    }
    .item-servico-body h3 {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .servicos-hero h1 {
        font-size: 2rem;
    }
    .services-tabs-nav {
        flex-direction: column;
        width: 100%;
        border-radius: 10px;
    }
    .tab-btn {
        width: 100%;
    }
}




/* ==========================================================================
   CSS COMPLEMENTAR - PÁGINA DE PARCEIROS ESTÁTICA (MAIRENO SEGUROS)
   ========================================================================== */

/* Cabeçalho institucional */
.parceiros-hero {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.parceiros-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 15px 0 10px 0;
}

.parceiros-hero p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grade organizada de logotipos */
.parceiros-grid-static {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 colunas idênticas no desktop */
    gap: 20px;
    margin-top: 20px;
}

.parceiro-logo-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

.parceiro-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    border-color: var(--secondary-color);
}

.parceiro-logo-card img {
    max-width: 130px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: filter 0.3s ease;
}

.parceiro-logo-card h4 {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.parceiro-logo-card:hover h4 {
    color: var(--primary-color);
}

/* Bloco explicativo final */
.text-center-custom {
    text-align: center;
}

.parceiros-info-block {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px 0;
}

.parceiros-info-block h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.parceiros-info-block p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================================
   Responsividade da Grade de Logos
   ========================================================================== */
@media (max-width: 1024px) {
    .parceiros-grid-static {
        grid-template-columns: repeat(4, 1fr); /* 4 colunas em tablets grandes */
    }
}

@media (max-width: 768px) {
    .parceiros-grid-static {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em tablets comuns */
        gap: 15px;
    }
    .parceiros-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .parceiros-grid-static {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em celulares comuns */
        gap: 10px;
    }
    .parceiro-logo-card {
        padding: 15px 10px;
    }
    .parceiro-logo-card img {
        max-width: 100px;
    }
}



/* ==========================================================================
   CSS COMPLEMENTAR - PÁGINA DE DEPOIMENTOS (MAIRENO SEGUROS)
   ========================================================================== */

/* Cabeçalho Hero com fundo azul escuro corporativo */
.depoimentos-hero {
    position: relative;
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #0c2340 0%, #002b5c 100%);
    color: #ffffff;
    text-align: center;
}

.depoimentos-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 30%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.depoimentos-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.depoimentos-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0 10px 0;
}

.depoimentos-hero p {
    font-size: 1.1rem;
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Placar resumo estilo Google Business */
.google-summary-badge {
    display: inline-flex;
    background: #ffffff;
    color: #1a202c;
    border-radius: 12px;
    padding: 20px 30px;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-align: left;
}

.g-summary-left {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid #e2e8f0;
    padding-right: 40px;
}

.g-summary-left i {
    font-size: 2.5rem;
    color: #4285f4;
}

.g-summary-left h3 {
    font-size: 1.15rem;
    color: #0c2340;
    font-weight: 700;
}

.g-summary-left p {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}

.g-summary-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.g-score {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0c2340;
    line-height: 1;
}

.g-stars-column .stars {
    color: #fbbc05;
    font-size: 1rem;
    margin-bottom: 2px;
}

.g-stars-column span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
}

/* Grade de Depoimentos Fixa (3 Colunas Lado a Lado no Desktop) */
.depoimentos-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

.testimonial-card-page {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

/* Seção de fechamento / CTA */
.depoimentos-cta {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #edf2f7;
}

.depoimentos-cta h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.depoimentos-cta p {
    color: #4a5568;
    font-size: 1.05rem;
}

/* ==========================================================================
   Ajustes de Responsividade
   ========================================================================== */
@media (max-width: 992px) {
    .depoimentos-grid-page {
        grid-template-columns: repeat(2, 1fr); /* 2 Colunas em Tablets */
    }
    .google-summary-badge {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 20px;
    }
    .g-summary-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 15px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .depoimentos-grid-page {
        grid-template-columns: 1fr; /* 1 Coluna em Smartphones */
    }
    .depoimentos-hero h1 {
        font-size: 1.9rem;
    }
}




/* ==========================================================================
   CSS COMPLEMENTAR - PÁGINA DE VANTAGENS & DIFERENCIAIS (MAIRENO SEGUROS)
   ========================================================================== */

/* Hero Section com os contadores em destaque */
.vantagens-hero {
    position: relative;
    padding: 70px 0 50px 0;
    background: linear-gradient(135deg, #0c2340 0%, #002e62 100%);
    color: #ffffff;
    text-align: center;
}

.vantagens-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.vantagens-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.vantagens-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0 10px 0;
}

.vantagens-hero p {
    font-size: 1.1rem;
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Contadores Compactos horizontais */
.counters-wrapper-mini {
    display: inline-flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 40px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    justify-content: center;
    flex-wrap: wrap;
}

.counter-item-box {
    text-align: center;
    padding: 0 30px;
}

.counter-item-box:nth-child(2) {
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
}

.counter-item-box h3 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 2px;
}

.counter-item-box p {
    font-size: 0.85rem;
    color: #a0aec0;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Grid de Blocos Detalhafados */
.vantagens-blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.vantagem-block-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
    transition: transform 0.3s ease;
}

.vantagem-block-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.v-card-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.vantagem-block-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.vantagem-block-card p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Tabela Comparativa de Alta Conversão */
.table-responsive-container {
    width: 100%;
    overflow-x: auto; /* Garante rolagem lateral se a tela for menor que a tabela */
    margin-top: 30px;
}

.comparativo-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    min-width: 750px;
}

.comparativo-table th, .comparativo-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.95rem;
}

.comparativo-table th {
    background-color: #f8fafc;
    color: var(--primary-color);
    font-weight: 700;
}

.comparativo-table th.highlight-th {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
}

.comparativo-table tbody tr:hover {
    background-color: #f8fafc;
}

.comparativo-table td:nth-child(2) {
    background-color: rgba(0,86,179,0.02);
    font-weight: 600;
    text-align: center;
}

.comparativo-table td:nth-child(3), .comparativo-table td:nth-child(4) {
    color: #718096;
}

.check-yes {
    color: #2f855a !important;
}

.check-no {
    color: #c53030 !important;
}

/* CTA Final */
.vantagens-cta-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.vantagens-cta-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.vantagens-cta-section p {
    color: #4a5568;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 992px) {
    .vantagens-blocks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .counter-item-box {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .vantagens-hero h1 {
        font-size: 1.9rem;
    }
    .counters-wrapper-mini {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }
    .counter-item-box:nth-child(2) {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.15);
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding: 15px 0;
        margin: 15px 0;
    }
}



/* ==========================================================================
   CSS COMPLEMENTAR - ESTRUTURA DO BLOG & SIDEBAR (MAIRENO SEGUROS)
   ========================================================================== */

/* Hero Premium do Blog */
.blog-hero {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg, #0c2340 0%, #002e62 100%);
    color: #ffffff;
    text-align: center;
}

.blog-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 15px 0 10px 0;
}

.blog-hero p {
    font-size: 1.1rem;
    color: #cbd5e0;
    line-height: 1.6;
}

/* Distribuição de Duas Colunas (Layout Principal) */
.blog-main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 66% de conteúdo e 33% de Sidebar */
    gap: 40px;
    align-items: start;
}

/* Grid de Artigos Internos (Coluna Esquerda) */
.blog-grid-archive {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 posts lado a lado */
    gap: 30px;
}

.post-archive-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-archive-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.post-card-thumb {
    width: 100%;
    height: 200px;
    position: relative;
    background-color: #edf2f7;
}

.post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.post-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-meta-data {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 12px;
}

.post-meta-data i {
    color: var(--secondary-color);
}

.post-card-body h2 {
    font-size: 1.25rem;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 700;
}

.post-card-body h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.post-card-body h2 a:hover {
    color: var(--secondary-color);
}

.post-card-body p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 20px;
}

.post-readmore {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto; /* Joga o botão sempre para o rodapé do card */
    transition: gap 0.2s;
}

.post-readmore:hover {
    gap: 8px;
    color: var(--primary-color);
}

/* ==========================================================================
   ESTILOS DA SIDEBAR (VAI ACOMPANHAR A SINGLE TAMBÉM)
   ========================================================================== */
.blog-sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px; /* Faz a barra fixar no topo do navegador ao descer a página */
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.widget-title {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #edf2f7;
}

/* Widget 1: Captura de cotação */
.widget-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0c2340 100%);
    color: #ffffff;
    border: none;
    text-align: center;
}

.widget-cta-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.widget-cta-box p {
    font-size: 0.9rem;
    color: #cbd5e0;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-sidebar-cta {
    display: block;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.btn-sidebar-cta:hover {
    background: #ffffff;
    color: var(--primary-color);
}

/* Widget 2: Categorias */
.widget-categories ul {
    list-style: none;
    padding: 0; margin: 0;
}

.widget-categories li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px dashed #edf2f7;
    transition: color 0.2s;
}

.widget-categories li a:hover {
    color: var(--secondary-color);
}

.widget-categories li a span {
    color: #a0aec0;
    font-weight: 400;
}

/* Widget 3: Itens Recentes */
.sidebar-recent-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.sidebar-recent-item:last-child {
    margin-bottom: 0;
}

.s-recent-thumb {
    width: 65px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #edf2f7;
}

.s-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s-recent-info h5 {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.s-recent-info h5 a {
    color: inherit;
    text-decoration: none;
}

.s-recent-info h5 a:hover {
    color: var(--secondary-color);
}

.s-recent-info span {
    font-size: 0.75rem;
    color: #a0aec0;
}

/* ==========================================================================
   Responsividade do Módulo de Blog
   ========================================================================== */
@media (max-width: 992px) {
    .blog-main-layout {
        grid-template-columns: 1fr; /* Joga a sidebar para baixo em tablets e celulares */
    }
    .blog-sidebar-wrapper {
        position: static; /* Desativa o sticky para fluir normalmente */
    }
}

@media (max-width: 650px) {
    .blog-grid-archive {
        grid-template-columns: 1fr; /* 1 post por linha no celular */
    }
    .blog-hero h1 {
        font-size: 2rem;
    }
}


/* ==========================================================================
   CSS COMPLEMENTAR - MODELO DE ARTIGO SINGLE (MAIRENO SEGUROS)
   ========================================================================== */
.blog-breadcrumbs {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-breadcrumbs a {
    color: var(--secondary-color);
    text-decoration: none;
}

.article-body-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.single-cat-badge {
    background: #e6f0fa;
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.article-header-meta h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin: 15px 0 10px 0;
    line-height: 1.3;
    font-weight: 800;
}

.single-subheading {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 15px;
}

.author-date-line {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #a0aec0;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 30px;
}

.single-post-main-thumb {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.single-post-main-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-text-entry p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 20px;
}

.article-text-entry strong {
    color: var(--primary-color);
}

/* Banner de conversão interno ao ler o artigo */
.article-footer-cta {
    background: #f8fafc;
    border-left: 4px solid var(--secondary-color);
    padding: 35px;
    border-radius: 0 8px 8px 0;
    margin-top: 45px;
    border: 1px solid #e2e8f0;
    border-left-width: 4px;
}

.article-footer-cta h3 {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.article-footer-cta p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .article-body-wrapper {
        padding: 20px;
    }
    .article-header-meta h1 {
        font-size: 1.6rem;
    }
}