/* 
================================================================
   SAÚDE RM | VACINAS RM - CSS GLOBAL & DESIGN SYSTEM PREMIUM
   Desenvolvido com foco em velocidade, acessibilidade e beleza
================================================================
*/

/* 1. IMPORTAÇÃO DE FONTES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* 2. VARIÁVEIS DO SISTEMA DE DESIGN (CUSTOM PROPERTIES) */
:root {
    --primary-color: #0d9488;      /* Teal Médico Principal */
    --primary-dark: #0f766e;       /* Teal Escuro para Estados Ativos */
    --primary-light: #f0fdfa;      /* Fundo com tom Teal super suave */
    --primary-accent: #14b8a6;     /* Teal Vibrante para Destaques */
    --secondary-color: #0284c7;    /* Azul para contraste e links secundários */
    --secondary-dark: #0369a1;     /* Azul Escuro */
    --text-main: #1f2937;          /* Cinza Escuro para Leitura Principal */
    --text-muted: #4b5563;         /* Cinza Médio para Textos de Suporte */
    --text-light: #9ca3af;         /* Cinza Claro */
    --bg-white: #ffffff;           /* Branco Puro */
    --bg-light: #f9fafb;           /* Cinza Quase Branco para Fundos */
    --border-color: #e5e7eb;       /* Cinza para Divisórias e Bordas */
    --whatsapp-color: #25d366;     /* Verde Oficial do WhatsApp */
    --whatsapp-dark: #128c7e;      /* Verde Escuro */
    
    /* Tipografia */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Grid e Layout */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Sombras Elevadas Premium */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(13, 148, 136, 0.08), 0 4px 6px -2px rgba(13, 148, 136, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-accent: 0 10px 20px -3px rgba(37, 211, 102, 0.25);
    
    /* Transições Suaves */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. RESET DE ESTILOS E REGRAS GLOBAIS */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* 4. UTILITIES E AJUSTES DE FLUXO */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

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

/* Botões Modernos */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 148, 136, 0.3);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-accent);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* 5. ESTRUTURA DO CABEÇALHO (HEADER - TOP & NAV) */
.header-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-active {
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.95);
}

/* Faixa Superior (Top Section) com Informações Rápidas */
.header-top {
    background-color: var(--primary-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(13, 148, 136, 0.08);
}

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

.header-top-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.header-top-info a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
}

.header-top-info a:hover {
    color: var(--primary-color);
}

.header-top-info i {
    color: var(--primary-color);
    font-size: 1rem;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-clinic {
    font-size: 0.8rem;
    padding: 0.35rem 1rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-clinic:hover {
    background-color: var(--secondary-dark);
    color: var(--bg-white);
}

/* Área de Navegação e Logo */
.header-nav-section {
    padding: 1rem 0;
}

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

.logo img {
    height: 48px;
    object-fit: contain;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
    position: relative;
    padding: 0.3rem 0;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--primary-color);
}

/* Indicador de link ativo elegante */
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
    width: 100%;
}

/* Menu Hambúrguer (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: left;
}

/* 6. BANNER PRINCIPAL (HERO SECTION) */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 60%, var(--primary-light) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Detalhe de fundo geométrico sutil */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 80%;
    background-color: rgba(13, 148, 136, 0.03);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

/* 7. SEÇÃO "QUEM SOMOS" INTEGRADA */
.about-section {
    background-color: var(--bg-white);
}

.section-title {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.about-video {
    width: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Aspect Ratio 16:9 */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* 8. SEÇÃO DE PREÇOS E CATÁLOGO DE VACINAS */
.catalog-section {
    background-color: var(--bg-light);
}

.search-wrap {
    max-width: 500px;
    margin: 0 auto 3rem auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.vaccine-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    text-align: left;
    height: 100%;
}

.vaccine-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.15);
}

.vaccine-card-header {
    margin-bottom: 1.5rem;
}

.vaccine-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vaccine-card h3 {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.vaccine-card-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vaccine-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.vaccine-card-price {
    font-family: var(--font-heading);
}

.vaccine-price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    text-transform: uppercase;
}

.vaccine-price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-card {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* 9. PÁGINA DE DETALHES DA VACINA (PÁGINA INDIVIDUAL) */
.details-section {
    background-color: var(--bg-white);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: start;
}

.details-content-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.details-content-card h1 {
    font-size: 2.25rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 1rem;
}

.details-info-block {
    margin-bottom: 2rem;
}

.details-info-block:last-child {
    margin-bottom: 0;
}

.details-info-block h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.details-info-block p {
    font-size: 1rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    white-space: pre-line; /* Mantém as quebras de linha */
}

/* Tabela de Preços e Condições Moderna */
.price-box {
    background-color: var(--primary-light);
    border: 1px dashed var(--primary-color);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-top: 2rem;
}

.price-box-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.price-box-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-box-obs {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Barra Lateral da Página de Detalhes (Sidebar) */
.details-sidebar {
    position: sticky;
    top: 140px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
}

.sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.sidebar-list a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    transform: translateX(5px);
}

.sidebar-list i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* 10. RODAPÉ DO SITE (FOOTER & MAPA) */
.footer-section {
    background-color: #1f2937; /* Cinza Escuro Premium */
    color: #f3f4f6;
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-widget-title {
    font-size: 1.25rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact-list a {
    color: #e5e7eb;
}

.footer-contact-list a:hover {
    color: var(--primary-color);
}

.footer-map-container {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
    height: 200px;
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Créditos e Redes Sociais no Fim do Rodapé */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

.footer-bottom-links a {
    color: #9ca3af;
    margin-right: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--bg-white);
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #e5e7eb;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
}

/* 11. BOTÃO DE WHATSAPP FLUTUANTE PREMIUM */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

/* Efeito de Ondulação (Pulse Animation) no WhatsApp */
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp-color);
    opacity: 0.4;
    z-index: -1;
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* 12. BANNER DE COOKIES (COOKIE CONSENT) */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 350px;
    background-color: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f3f4f6;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--bg-white);
}

.cookie-desc {
    font-size: 0.85rem;
    color: #d1d5db;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.cookie-desc a {
    color: var(--primary-accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
}

.btn-cookie-accept {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    border-radius: var(--border-radius-sm);
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

/* 13. RESPONSIVIDADE (MEDIA QUERIES) */

/* Notebooks e Desktops Pequenos (< 1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-section .container {
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-grid {
        gap: 2rem;
    }
    
    .details-grid {
        gap: 2rem;
    }
}

/* Tablets e Celulares em Paisagem (< 768px) */
@media (max-width: 768px) {
    .header-top {
        display: none; /* Oculta faixa superior em mobile para economizar espaço */
    }
    
    .hamburger {
        display: flex; /* Exibe o botão sanduíche */
    }
    
    /* Configuração do Menu Mobile Slide-out */
    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        z-index: 100;
    }
    
    .navbar-links.mobile-active {
        right: 0;
    }
    
    /* Overlay ao abrir menu mobile */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    
    .nav-overlay.mobile-active {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Transformações do Hambúrguer ativo */
    .hamburger.mobile-active span:nth-child(1) {
        transform: rotate(45deg) translate(2px, -1px);
    }
    
    .hamburger.mobile-active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.mobile-active span:nth-child(3) {
        transform: rotate(-45deg) translate(1px, 0px);
    }
    
    /* Grid de uma coluna em mobile */
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .details-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Centralização de botões do Hero */
    .hero-content .flex-center {
        justify-content: center;
    }
}

/* Celulares Pequenos (< 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .section-padding {
        padding: 3.5rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .vaccine-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: calc(100vw - 20px);
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .details-content-card {
        padding: 1.5rem;
    }
    
    .details-content-card h1 {
        font-size: 1.8rem;
    }
}
