* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #262e6c;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Palette: variáveis CSS para facilitar manutenção */
:root {
    --primary: #262e6c; /* azul escuro */
    --secondary: #009edd; /* azul claro */
    --accent: #ea9545; /* laranja pedido */
    --header-height: 90px;
    --bg: #ffffff;
    --surface: #f3f6f8;
    --muted: #ccecf8;
    --text: #262e6c;
}

/* ========== HEADER FIXO (TRANSPARENTE INICIAL) ========== */
header {
    background: transparent;
    color: var(--text);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1100;
    transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}

/* Classe que adiciona fundo branco ao rolar */
header.scrolled {
    background: var(--surface);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Links do menu quando header é transparente (estado inicial) */
header:not(.scrolled) .nav-menu > li > a {
    color: var(--accent);
}

header:not(.scrolled) .menu-toggle {
    color: var(--accent);
}

/* manter o X branco no mobile */
header:not(.scrolled) .close-menu-btn i,
header:not(.scrolled) .close-menu-btn svg,
header:not(.scrolled) .close-menu-btn .icon {
    color: var(--bg);
}

/* Links do menu quando header tem fundo branco */
header.scrolled .nav-menu > li > a {
    color: #262e6c;
}

header.scrolled .menu-toggle {
    color: #262e6c;
}

header.scrolled .close-menu-btn i,
header.scrolled .close-menu-btn svg,
header.scrolled .close-menu-btn .icon {
    color: #262e6c;
}

/* Logo */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.884);
}

.logo-img {
    height: 55px;
    width: auto;
    max-height: 55px;
    transition: all 0.3s ease;
}

header:not(.scrolled) .logo a {
    background: rgba(255, 255, 255, 0.85);
}

header.scrolled .logo a {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Quando rolar, logo diminui um pouco */
header.scrolled .logo-img {
    height: 60px;
    max-height: 60px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Espaçamento entre logo e menu */
.logo {
    margin-right: 16px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Pequeno deslocamento da lista de links para respirar ao lado da logo */
.nav-menu {
    margin-left: 8px;
}

/* Mostrar e destacar o toggle mobile (3 pontinhos) */
.menu-toggle {
    display: block !important;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1202;
    position: relative;
    color: var(--bg) !important;
}

/* ========== HERO COM IMAGEM DE FUNDO ========== */
.hero {
    background: linear-gradient(rgba(38, 46, 108, 0.7), rgba(0, 158, 221, 0.7)), url('img/banner-index.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 100px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: calc(-1 * var(--header-height));
    padding-top: var(--header-height);
    position: relative;
    z-index: 1;
}

.hero .container {
    width: 100%;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background: #009edd;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #262e6c;
    transform: scale(1.05);
}

/* ========== MENU COM SUBMENUS EXPANSÍVEIS ========== */
nav {
    position: relative;
    overflow: visible;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu > li:not(.close-menu-btn) {
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-menu > li > a:hover {
    color: #009edd;
}

.nav-menu > li > a i,
.nav-menu > li > a svg,
.nav-menu > li > a .icon {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

/* Seta girando quando aberto */
.dropdown.open > a i,
.dropdown.open > a svg,
.dropdown.open > a .icon {
    transform: rotate(180deg);
}

/* Dropdown menu - Desktop (hover) */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown:hover > a i,
    .dropdown:hover > a svg,
    .dropdown:hover > a .icon {
            transform: rotate(180deg);
        }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #262e6c;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: #ccecf8;
    color: #009edd;
    padding-left: 1.5rem;
}

/* ========== MENU MOBILE ========== */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 101;
    position: relative;
}

/* Botão de fechar (X) */
.close-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    list-style: none;
    width: auto;
    padding: 0;
    margin: 0;
    z-index: 1002;
    background: transparent;
    color: var(--primary);
    align-items: center;
    justify-content: center;
}

.close-menu-btn i,
.close-menu-btn svg,
.close-menu-btn .icon {
    font-size: 28px;
    color: inherit;
}

/* Quando o menu está aberto, mostra o X */
.nav-menu.show .close-menu-btn {
    display: flex !important;
}

@media (max-width: 768px) {
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
    }

    .logo {
        display: flex !important;
        align-items: center !important;
        z-index: 10001 !important;
    }

    .logo-img {
        display: block !important;
        height: 50px !important;
    }

    .menu-toggle svg,
    .menu-toggle .icon {
        display: inline-block;
    }

    .menu-toggle {
        display: block !important;
        color: var(--bg) !important;
        z-index: 1202 !important;
        background: transparent !important;
    }

    /* Garantir que o toggle esteja visível e clicável no header (mobile) */
    header .menu-toggle {
        position: fixed !important;
        right: 18px !important;
        top: 14px !important;
        transform: none !important;
        padding: 8px !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        z-index: 20000 !important;
    }
    /* Forçar cor do toggle dependendo do estado do header */
    header:not(.scrolled) .menu-toggle {
        color: var(--bg) !important;
    }
    header.scrolled .menu-toggle {
        color: var(--text) !important;
    }
    
    nav {
        overflow: visible;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #f3f6f8;
        flex-direction: column;
        gap: 0;
        padding: 80px 1.5rem 2rem;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.show {
        display: flex;
        background: var(--surface);
    }

    .nav-menu.show + .menu-toggle {
        display: none !important;
    }

    .nav-menu.show .close-menu-btn,
    .nav-menu.show .close-menu-btn svg,
    .nav-menu.show .close-menu-btn .icon {
        color: var(--primary) !important;
    }
    
    .nav-menu > li:not(.close-menu-btn) {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    
    .nav-menu.show .close-menu-btn {
        display: flex !important;
    }
    
    .nav-menu > li > a {
        padding: 1rem 0;
        justify-content: space-between;
        font-size: 1.1rem;
        color: #1c2a45 !important;
        font-weight: 600;
        letter-spacing: 0.01em;
    }
    
    /* Submenu no mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #ffffff;
        border: 1px solid rgba(38,46,108,0.12);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0.75rem 0 0.75rem 1rem;
        width: 100%;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        border-radius: 14px;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 0.9rem 0.8rem 0.9rem 1.5rem;
        font-size: 0.95rem;
        color: #1c2a45 !important;
        background: transparent;
    }
    
    .dropdown-menu li a:hover {
        padding-left: 2rem;
        background: rgba(38,46,108,0.08);
        color: #0c1b3d !important;
    }
    
    /* Seta girando */
    .dropdown.open > .dropdown-toggle i,
    .dropdown.open > .dropdown-toggle svg,
    .dropdown.open > .dropdown-toggle .icon {
            transform: rotate(180deg);
        }
}


/* ========== FOOTER ========== */
footer {
    background: #262e6c;
    color: #ccecf8;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    background: rgba(0, 158, 221, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #ccecf8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #009edd;
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: #ccecf8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.social-links a i {
    width: 22px;
    font-size: 1rem;
}

.social-links a:hover {
    color: #009edd;
    transform: translateX(5px);
}

.endereco-unidade {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.7rem;
    line-height: 1.4;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(204, 236, 248, 0.2);
    color: #ccecf8;
}

.endereco-unidade i {
    color: #009edd;
    font-size: 0.8rem;
    min-width: 20px;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(204, 236, 248, 0.2);
    gap: 1rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-logo {
    height: 30px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-left p {
    margin: 0;
    font-size: 0.7rem;
    color: #ccecf8;
}

.footer-right {
    flex-shrink: 0;
}

.creditos {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ccecf8;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 30px;
    background: rgba(204, 236, 248, 0.05);
}

.creditos:hover {
    color: #009edd;
    background: rgba(0, 158, 221, 0.1);
}

.credito-logo {
    height: 18px;
    width: auto;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .hero {
        padding: 150px 0 80px;
        min-height: 90vh;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-vision .container {
        flex-direction: column;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        height: 50px;
        max-height: 50px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0;
    }
    
    .social-links a {
        justify-content: center;
    }
    
    .endereco-unidade {
        justify-content: center;
        text-align: center;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-col h3 {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 0.8rem;
    }
    
    .footer-left {
        justify-content: center;
    }
    
    .creditos {
        justify-content: center;
    }
    
    .footer-logo {
        height: 25px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
}

/* ========== ANIMAÇÕES ========== */
html {
    scroll-behavior: smooth;
}

body {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

nav a.active {
    color: #009edd;
    border-bottom: 2px solid #009edd;
    padding-bottom: 5px;
}

/* Desktop: header fixo no topo */
@media (min-width: 769px) {
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: var(--header-height) !important;
        z-index: 1100 !important;
    }
    /* esconder toggle no desktop (aparece apenas em mobile) */
    .menu-toggle {
        display: none !important;
    }
    nav {
        position: relative !important;
    }
    .nav-menu {
        position: static !important;
        display: flex !important;
    }
    .close-menu-btn {
        display: none !important;
    }
}

/* ========== SOBRE - PAGE BANNER ========== */
.page-banner {
    background:
        linear-gradient(
            rgba(38, 46, 108, 0.75),
            rgba(0, 158, 221, 0.75)
        ),
        url("img/banner-sobre.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    text-align: center;
    padding: 140px 0 80px;
    padding-top: calc(var(--header-height, 90px) + 40px);
    min-height: 350px;
    display: flex;
    align-items: center;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SOBRE - QUEM SOMOS ========== */
.sobre-quem {
    padding: 4rem 0;
    background: #ffffff;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-texto h2 {
    font-size: 2.5rem;
    color: #262e6c;
    margin-bottom: 1.5rem;
}

.sobre-texto p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.sobre-texto strong {
    color: #009edd;
}

.sobre-imagem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-img-destaque {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* ========== SOBRE - DIFERENCIAIS ========== */
.sobre-diferenciais {
    padding: 4rem 0;
    background: #ccecf8;
}

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

.diferencial-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,158,221,0.15);
}

.diferencial-icon {
    width: 70px;
    height: 70px;
    background: #ccecf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #009edd;
    transition: all 0.3s;
}

.diferencial-card:hover .diferencial-icon {
    background: #009edd;
    color: white;
    transform: scale(1.05);
}

.diferencial-card h3 {
    color: #262e6c;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.diferencial-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== SOBRE - NÚMEROS ========== */
.sobre-numeros {
    padding: 4rem 0;
    background: #262e6c;
    color: white;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.numero-item {
    padding: 1rem;
}

.numero {
    font-size: 3.5rem;
    font-weight: 700;
    color: #009edd;
    display: block;
    line-height: 1.2;
}

.numero-label {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
    margin-top: 0.5rem;
}

/* ========== SOBRE - CTA ========== */
.sobre-cta {
    padding: 4rem 0;
    background: #ffffff;
    text-align: center;
}

.sobre-cta h2 {
    font-size: 2.2rem;
    color: #262e6c;
    margin-bottom: 1rem;
}

.sobre-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* ========== RESPONSIVO SOBRE ========== */
@media (max-width: 768px) {
    .page-banner {
        padding: 110px 0 50px;
        padding-top: calc(var(--header-height, 90px) + 20px);
        min-height: 220px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .sobre-texto h2 {
        font-size: 2rem;
    }
    
    .sobre-img-destaque {
        max-height: 180px;
    }
    
    .numeros-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .numero {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .numeros-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CONTATO - BANNER ========== */
.contato-banner {
    background: 
        linear-gradient(
            rgba(38, 46, 108, 0.75),
            rgba(0, 158, 221, 0.75)
        ),
        url('img/banner-contato.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 180px 0 80px;
    margin-top: 0;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.contato-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contato-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== CONTATO - UNIDADES ========== */
.contato-unidades {
    padding: 4rem 0;
    background: #ffffff;
}

.unidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.unidade-card {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.unidade-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,158,221,0.12);
}

.unidade-header {
    background: linear-gradient(135deg, #262e6c, #009edd);
    padding: 1.2rem 1.5rem;
}

.unidade-header h2 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.unidade-body {
    padding: 1.5rem;
}

.unidade-endereco {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8ecf0;
}

.unidade-endereco i {
    color: #009edd;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.unidade-endereco p {
    color: #444;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.unidade-contato {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #262e6c;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.social-link i {
    width: 24px;
    font-size: 1.1rem;
    color: #009edd;
}

.social-link:hover {
    color: #009edd;
    transform: translateX(5px);
}

.social-link:hover i {
    color: #009edd;
}

.unidade-mapa {
    border-radius: 12px;
    overflow: hidden;
    background: #eef2f6;
}

.unidade-mapa iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
}

/* ========== CONTATO - CTA ========== */
.contato-cta {
    padding: 4rem 0;
    background: #ccecf8;
    text-align: center;
}

.contato-cta h2 {
    font-size: 2.2rem;
    color: #262e6c;
    margin-bottom: 1rem;
}

.contato-cta p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-email {
    background: #262e6c;
    color: white;
}

.btn-email:hover {
    background: #1a1f4a;
    transform: scale(1.05);
}

.btn-email i {
    margin-right: 8px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: scale(1.05);
}

.btn-whatsapp i {
    margin-right: 8px;
}

/* ========== RESPONSIVO CONTATO ========== */
@media (max-width: 768px) {
    .contato-banner {
        padding: 140px 0 50px;
        min-height: 200px;
    }
    
    .contato-banner h1 {
        font-size: 2rem;
    }
    
    .contato-banner p {
        font-size: 1rem;
    }
    
    .unidades-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .unidade-card {
        max-width: 100%;
    }
    
    .unidade-mapa iframe {
        height: 160px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-email, .btn-whatsapp {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .unidade-header h2 {
        font-size: 1rem;
    }
    
    .unidade-body {
        padding: 1rem;
    }
}

/* ========== SOBRE - FUNDADORA ========== */
.sobre-fundadora {
    padding: 4rem 0;
    background: #ffffff;
}

.fundadora-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fundadora-imagem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fundadora-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    display: block;
}

.fundadora-texto h2 {
    font-size: 2.5rem;
    color: #262e6c;
    margin-bottom: 0.3rem;
}

.fundadora-subtitulo {
    font-size: 1.1rem;
    color: #009edd;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.fundadora-texto h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #009edd;
    margin-top: 0.5rem;
}

.fundadora-texto p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.fundadora-dados {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8ecf0;
}

.dado-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dado-item i {
    font-size: 1.3rem;
    color: #009edd;
    width: 40px;
    height: 40px;
    background: #ccecf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dado-item h4 {
    font-size: 0.9rem;
    color: #262e6c;
    margin: 0;
}

.dado-item p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

/* ========== RESPONSIVO FUNDADORA ========== */
@media (max-width: 768px) {
    .fundadora-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fundadora-img {
        max-width: 280px;
        height: 280px;
    }
    
    .fundadora-texto h2:after {
        margin: 0.5rem auto 0;
    }
    
    .fundadora-dados {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .dado-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .fundadora-img {
        max-width: 220px;
        height: 220px;
    }
}

/* ========== SERVIÇOS - BANNER ========== */
.servicos-banner {
    background: 
        linear-gradient(
            rgba(38, 46, 108, 0.75),
            rgba(0, 158, 221, 0.75)
        ),
        url('img/banner-servicos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 180px 0 80px;
    margin-top: 0;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.servicos-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.servicos-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SERVIÇOS - INTRO ========== */
.servicos-intro {
    padding: 4rem 0;
    background: #ffffff;
}

.servicos-intro-texto {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.servicos-intro-texto p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
}

/* ========== SERVIÇOS - ETAPAS ========== */
.servicos-etapas {
    padding: 4rem 0;
    background: #f8fafc;
}

.etapas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.etapa-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eef2f6;
}

.etapa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,158,221,0.12);
    border-color: #009edd;
}

.etapa-card:hover .etapa-icon {
    background: #009edd;
    color: white;
}

.etapa-numero {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 3rem;
    font-weight: 700;
    color: #ccecf8;
    opacity: 0.5;
    line-height: 1;
}

.etapa-icon {
    width: 60px;
    height: 60px;
    background: #ccecf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #009edd;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.etapa-card h3 {
    font-size: 1.1rem;
    color: #262e6c;
    margin-bottom: 0.8rem;
}

.etapa-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ========== SERVIÇOS - TERAPEUTA ========== */
.servicos-terapeuta {
    padding: 4rem 0;
    background: #ffffff;
}

.terapeuta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.terapeuta-imagem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.terapeuta-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.terapeuta-texto h2 {
    font-size: 2.5rem;
    color: #262e6c;
    margin-bottom: 1.5rem;
    position: relative;
}

.terapeuta-texto h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #009edd;
    margin-top: 0.5rem;
}

.terapeuta-texto p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terapeuta-beneficios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #262e6c;
}

.beneficio-item i {
    color: #009edd;
    font-size: 1.2rem;
    width: 24px;
}

/* ========== SERVIÇOS - CTA ========== */
.servicos-cta {
    padding: 4rem 0;
    background: #ccecf8;
    text-align: center;
}

.servicos-cta h2 {
    font-size: 2.2rem;
    color: #262e6c;
    margin-bottom: 1rem;
}

.servicos-cta p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

/* ========== RESPONSIVO SERVIÇOS ========== */
@media (max-width: 768px) {
    .servicos-banner {
        padding: 140px 0 50px;
        min-height: 200px;
    }
    
    .servicos-banner h1 {
        font-size: 2rem;
    }
    
    .servicos-banner p {
        font-size: 1rem;
    }
    
    .etapas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .terapeuta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .terapeuta-texto h2:after {
        margin: 0.5rem auto 0;
    }
    
    .terapeuta-beneficios {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    
    .beneficio-item {
        justify-content: center;
    }
    
    .servicos-intro-texto p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .etapa-numero {
        font-size: 2.5rem;
    }
}

/* ========== MISSÃO, VISÃO E VALORES ========== */
.missao-visao-valores {
    padding: 4rem 0;
    background: #ffffff;
}

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

.mvv-card {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,158,221,0.1);
    border-color: #009edd;
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: #ccecf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #009edd;
    transition: all 0.3s ease;
}

.mvv-card:hover .mvv-icon {
    background: #009edd;
    color: white;
}

.mvv-card h3 {
    font-size: 1.3rem;
    color: #262e6c;
    margin-bottom: 1rem;
}

.mvv-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.valores-lista {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 0.5rem;
}

.valores-lista li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.valores-lista li::before {
    content: '✓';
    color: #009edd;
    font-weight: bold;
    font-size: 1.1rem;
}

/* ========== PARCEIROS ========== */
.parceiros {
    background: #ccecf8;
    padding: 4rem 0;
}

.parceiros-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.parceiro-item {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 150px;
    min-height: 100px;
    flex: 1 1 auto;
    max-width: 200px;
}

.parceiro-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.parceiro-logo {
    max-width: 100px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.parceiro-nome {
    font-size: 0.8rem;
    font-weight: 600;
    color: #262e6c;
    text-align: center;
    letter-spacing: 0.5px;
}

/* ========== DEPOIMENTOS ========== */
.depoimentos {
    padding: 4rem 0;
    background: #ffffff;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.depoimento-topo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}

.depoimento-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #009edd;
    flex-shrink: 0;
}

.depoimento-nome-cliente h4 {
    font-size: 1rem;
    color: #262e6c;
    margin: 0;
    font-weight: 600;
}

.depoimento-estrelas {
    color: #f39c12;
    font-size: 0.8rem;
}

.depoimento-estrelas i {
    margin-right: 1px;
}

.depoimento-texto {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0.8rem;
    flex: 1;
}

.depoimento-unidade {
    font-size: 0.75rem;
    font-weight: 600;
    color: #009edd;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    text-align: right;
}

/* Botão Ver Mais (mobile) */
.depoimentos-ver-mais {
    display: none;
    text-align: center;
    margin-top: 2rem;
}

.btn-ver-mais {
    background: #009edd;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ver-mais:hover {
    background: #262e6c;
    transform: scale(1.05);
}

.btn-ver-mais i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-ver-mais.ativo i {
    transform: rotate(180deg);
}


/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
     .parceiros-grid {
        gap: 1rem;
    }
    
    .parceiro-item {
        min-width: 100px;
        min-height: 80px;
        padding: 1rem 1.2rem;
        flex: 1 1 calc(50% - 1rem);
        max-width: 160px;
    }
    
    .parceiro-logo {
        max-width: 70px;
        max-height: 35px;
    }
    
    .parceiro-nome {
        font-size: 0.7rem;
    }

    /* Depoimentos: esconde os 6 últimos e mostra botão */
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid .depoimento-card:nth-child(n+4) {
        display: none;
    }
    
    .depoimentos-grid.mostrar-todos .depoimento-card {
        display: flex !important;
    }
    
    .depoimentos-ver-mais {
        display: block;
    }
    
    .valores-lista li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .parceiro-item {
        flex: 1 1 calc(50% - 0.8rem);
        min-width: 80px;
        min-height: 70px;
        padding: 0.8rem 1rem;
    }
    
    .parceiro-logo {
        max-width: 55px;
        max-height: 30px;
    }
    
    .parceiro-nome {
        font-size: 0.65rem;
    }
    
    .depoimento-avatar {
        width: 40px;
        height: 40px;
    }
    
    .depoimento-nome-cliente h4 {
        font-size: 0.9rem;
    }
}

/* ========== BOTÃO FLUTUANTE ========== */
.botao-flutuante-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Cada botão alinhado à direita */
.botao-flutuante,
.botao-whatsapp-flutuante {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: auto;
}

/* Os botões principais */
.botao-flutuante .btn-principal,
.botao-whatsapp-flutuante .btn-whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.botao-flutuante .btn-principal {
    background: linear-gradient(135deg, #5ac0eb 0%, #009edd 65%, #2b7fb5 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0,158,221,0.35);
}

.botao-flutuante .btn-principal:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0,158,221,0.45);
}

.botao-whatsapp-flutuante .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1fa851 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.botao-whatsapp-flutuante .btn-whatsapp i {
    font-size: 34px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.botao-whatsapp-flutuante .btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Ícones dentro dos botões */
.botao-flutuante .btn-principal .icone-aberto,
.botao-whatsapp-flutuante .btn-whatsapp .icone-aberto {
    display: none;
}

.botao-flutuante .btn-principal .icone-fechado,
.botao-whatsapp-flutuante .btn-whatsapp .icone-fechado {
    display: block;
}

.botao-flutuante.aberto .btn-principal .icone-aberto,
.botao-whatsapp-flutuante.aberto .btn-whatsapp .icone-aberto {
    display: block;
}

.botao-flutuante.aberto .btn-principal .icone-fechado,
.botao-whatsapp-flutuante.aberto .btn-whatsapp .icone-fechado {
    display: none;
}

/* Submenus */
.submenu-flutuante,
.submenu-whatsapp {
    position: absolute;
    bottom: 70px;
    right: 0;
    transform: translateY(10px) scale(0.95);
    background: white;
    border-radius: 16px;
    padding: 0.8rem 0;
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform-origin: bottom right;
}

/* Alinhamento correto para cada submenu */
.botao-flutuante {
    position: relative;
}

.botao-whatsapp-flutuante {
    position: relative;
}

/* Quando aberto */
.botao-flutuante.aberto .submenu-flutuante,
.botao-whatsapp-flutuante.aberto .submenu-whatsapp {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Itens do submenu */
.submenu-flutuante .submenu-item,
.submenu-whatsapp .submenu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.7rem 1.2rem;
    color: #262e6c;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.submenu-flutuante .submenu-item:hover {
    background: #ccecf8;
    border-left-color: #009edd;
    padding-left: 1.5rem;
}

.submenu-whatsapp .submenu-item:hover {
    background: #ccecf8;
    border-left-color: #25D366;
    padding-left: 1.5rem;
}

.submenu-flutuante .submenu-item i,
.submenu-whatsapp .submenu-item i {
    width: 20px;
    font-size: 0.9rem;
}

.submenu-flutuante .submenu-item i {
    color: #009edd;
}

.submenu-whatsapp .submenu-item i {
    color: #25D366;
}

.submenu-flutuante .submenu-divider,
.submenu-whatsapp .submenu-divider {
    height: 1px;
    background: #e8ecf0;
    margin: 0.3rem 1.2rem;
}

.submenu-flutuante .submenu-titulo,
.submenu-whatsapp .submenu-titulo {
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1.2rem 0.2rem;
}

/* ========== RESPONSIVO BOTÃO FLUTUANTE ========== */
@media (max-width: 768px) {
    .botao-flutuante-wrapper {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .botao-flutuante .btn-principal {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .botao-whatsapp-flutuante .btn-whatsapp {
        width: 55px;
        height: 55px;
    }

    .botao-whatsapp-flutuante .btn-whatsapp i {
        font-size: 30px;
    }
    
    .submenu-flutuante,
    .submenu-whatsapp {
        min-width: 190px;
        max-width: 240px;
        bottom: 65px;
    }
    
    .submenu-flutuante .submenu-item,
    .submenu-whatsapp .submenu-item {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 480px) {
    .botao-flutuante-wrapper {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .botao-flutuante .btn-principal {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .botao-whatsapp-flutuante .btn-whatsapp {
        width: 50px;
        height: 50px;
    }

    .botao-whatsapp-flutuante .btn-whatsapp i {
        font-size: 27px;
    }
    
    .submenu-flutuante,
    .submenu-whatsapp {
        min-width: 180px;
        max-width: 210px;
        bottom: 58px;
        padding: 0.5rem 0;
    }
    
    .submenu-flutuante .submenu-item,
    .submenu-whatsapp .submenu-item {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        gap: 10px;
    }
    
    .submenu-flutuante .submenu-titulo,
    .submenu-whatsapp .submenu-titulo {
        font-size: 0.55rem;
        padding: 0.3rem 0.8rem 0.1rem;
    }
}

/* ========== POPUP TERAPEUTA ========== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.popup-overlay.ativo {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: linear-gradient(145deg, rgba(255,255,255,0.97) 0%, rgba(248,252,254,0.98) 100%);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 158, 221, 0.16);
    animation: popupEntrada 0.5s ease;
}

@keyframes popupEntrada {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-fechar {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.popup-fechar:hover {
    color: #262e6c;
    transform: rotate(90deg) scale(1.05);
}

.popup-conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    align-items: stretch;
}

.popup-imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 0 0 24px;
    display: block;
}

.popup-texto {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(243,246,248,0.95) 100%);
}

.popup-texto h2 {
    font-size: 2rem;
    color: #262e6c;
    margin-bottom: 1rem;
}

.popup-texto h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #009edd;
    margin-top: 0.5rem;
}

.popup-texto p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-popup {
    background: linear-gradient(135deg, #009edd 0%, #262e6c 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 10px 24px rgba(0, 158, 221, 0.22);
}

.btn-popup:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 158, 221, 0.28);
}

.btn-popup i {
    font-size: 1.2rem;
}

/* ========== RESPONSIVO POPUP ========== */
@media (max-width: 768px) {
    .popup-conteudo {
        grid-template-columns: 1fr;
    }
    
    .popup-imagem {
        max-height: 420px;
        height: auto;
        border-radius: 24px 24px 0 0;
        object-fit: contain;
        background: #f8fafc;
        padding: 0.5rem;
    }
    
    .popup-texto {
        padding: 2rem 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .popup-texto h2:after {
        margin: 0.5rem auto 0;
    }
    
    .popup-texto h2 {
        font-size: 1.6rem;
    }
    
    .popup-texto p {
        font-size: 0.95rem;
    }
    
    .popup-fechar {
        top: 10px;
        right: 15px;
        font-size: 24px;
        color: #262e6c;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .popup-imagem {
        max-height: 220px;
        padding: 0.5rem;
    }
    
    .popup-texto {
        padding: 1.5rem 1rem;
    }
    
    .popup-texto h2 {
        font-size: 1.3rem;
    }
    
    .btn-popup {
        font-size: 0.9rem;
        padding: 10px 24px;
        width: 100%;
        justify-content: center;
    }
}