/* --- RESET E VARIÁVEIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

:root {
    --primary: #880e4f;
    --secondary: #d81b60;
    --accent: #f8bbd0;
    --bg-color: #fff5f8;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-dark: #2d2d2d;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden; /* Impede rolagem lateral indesejada no mobile */
}

h1, h2 { font-family: 'Playfair Display', serif; }

/* --- BLOBS (FUNDO ANIMADO) --- */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
    animation: moveBlob 10s infinite alternate;
}
.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: #ffcdd2; }
.blob-2 { bottom: 10%; right: -10%; width: 400px; height: 400px; background: #e1bee7; animation-delay: 5s; }

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* --- NAVBAR AVANÇADA --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.4s ease;
}

/* Navbar Scrolled (Efeito Vidro quando rola) */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 15px 5%;
}

.logo { font-size: 1.8rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }
.logo span { color: var(--secondary); }

.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: 0.3s; position: relative; }

/* Efeito Hover no Menu (Linha embaixo) */
.nav-links a::after {
    content: ''; width: 0; height: 2px; background: var(--secondary);
    position: absolute; bottom: -5px; left: 0; transition: 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-buttons { display: flex; gap: 15px; align-items: center; }
.desktop-only { display: flex; }
.mobile-only { display: none; }

.btn-login { text-decoration: none; color: var(--primary); font-weight: 600; }
.btn-agendar {
    text-decoration: none; background: var(--primary); color: white;
    padding: 10px 25px; border-radius: 30px; transition: 0.3s;
    box-shadow: 0 5px 15px rgba(136, 14, 79, 0.2);
}
.btn-agendar:hover { transform: translateY(-3px); background: var(--secondary); }

/* 1. CONFIGURAÇÃO GERAL DO HAMBÚRGUER (Desktop: Oculto) */
.hamburger {
    display: none; /* Escondido por padrão */
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: 0.3s;
    background-color: #880e4f;
    border-radius: 5px;
}

/* --- HERO SECTION --- */
.hero {
    display: flex; align-items: center; justify-content: space-between;
    padding: 160px 5% 50px; min-height: 90vh;
}

.hero-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero-content h1 span { 
    color: transparent; 
    background: linear-gradient(45deg, var(--secondary), #ff80ab); 
    -webkit-background-clip: text; /* Texto gradiente moderno */
    font-style: italic; 
}
.hero-content p { font-size: 1.1rem; color: #666; margin-bottom: 30px; max-width: 500px; }

.btn-principal {
    display: inline-block; text-decoration: none;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    color: white; padding: 15px 40px; border-radius: 50px; font-weight: 600;
    box-shadow: 0 10px 20px rgba(216, 27, 96, 0.4); transition: 0.3s;
}
.btn-principal:hover { transform: translateY(-5px); box-shadow: 0 15px 25px rgba(216, 27, 96, 0.5); }

.image-wrapper img {
    width: 450px; height: 550px; object-fit: cover;
    border-radius: 200px 200px 20px 20px;
    box-shadow: 20px 20px 0 var(--accent);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- SCROLL REVEAL ANIMATION (JS Trigger) --- */
.scroll-hidden { opacity: 0; transform: translateY(30px); transition: all 1s ease; }
.scroll-visible { opacity: 1; transform: translateY(0); }
.delay-200 { transition-delay: 0.2s; }

/* --- SEÇÃO SOBRE A DONA (BLOCK 2) --- */
.about {
    padding: 100px 5%;
    background-color: #fff; /* Fundo branco para contraste com o rosa */
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide a tela em 2 */
    align-items: center;
    gap: 80px;
}

/* Área da Foto */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.safira-photo {
    width: 400px;
    height: 500px;
    position: relative;
    z-index: 2;
}

.safira-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 150px 150px 20px 20px; /* Arco invertido em relação ao Hero */
    box-shadow: -20px 20px 0 var(--accent); /* Sombra para o outro lado */
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .safira-photo img {
    transform: scale(1.02) rotate(-2deg); /* Efeito suave ao passar o mouse */
}

/* O Texto Giratório (Selo) */
.rotating-badge {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    z-index: 3; /* Fica na frente da foto */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: spin 15s linear infinite;
}

.rotating-badge svg { width: 140px; height: 140px; }

@keyframes spin { 100% { transform: rotate(360deg); } }

/* Área do Texto */
.about-content { position: relative; z-index: 2; }

.subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-content h2 span { color: var(--primary); font-style: italic; }

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Mini estatísticas */
.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat h3 { font-size: 2rem; color: var(--secondary); margin-bottom: 5px; }
.stat p { font-size: 0.9rem; color: #888; text-transform: uppercase; }

/* Botão Link */
.btn-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-link:hover { gap: 15px; color: var(--secondary); }

/* --- RESPONSIVIDADE DO BLOCO 2 --- */
@media (max-width: 900px) {
    .about-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    
    .about-image-wrapper { justify-content: center; }
    
    .safira-photo { width: 80vw; height: 400px; }
    
    /* No celular, o selo giratório fica menor e no canto */
    .rotating-badge { width: 100px; height: 100px; top: -20px; right: -10px; left: auto; }
    .rotating-badge svg { width: 90px; height: 90px; }
    
    .about-stats { justify-content: center; }
    .btn-link { justify-content: center; }
}


/* --- BLOCO 3: GALERIA (SWIPER) --- */
.gallery {
    padding: 80px 0; /* Sem padding lateral para o slider encostar na borda no mobile */
    background: #fff5f8;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 5%;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}
.gallery-header h2 span { color: var(--secondary); font-style: italic; }

/* Ajustes do Swiper */
.swiper {
    width: 100%;
    padding-bottom: 50px !important; /* Espaço para as bolinhas */
}

.swiper-slide {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    height: 300px; /* Altura fixa para alinhar */
    position: relative;
    transition: transform 0.3s;
}

/* Efeito Hover na Imagem */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.swiper-slide:hover img {
    transform: scale(1.1); /* Zoom suave ao passar o mouse */
}

/* Overlay com ícone de zoom (opcional, design avançado) */
.swiper-slide::after {
    content: '❤';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: white;
    z-index: 2;
    transition: 0.3s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.swiper-slide:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Estilizando as Bolinhas (Pagination) */
.swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
    width: 10px; height: 10px;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary);
    width: 25px; /* Bolinha ativa vira um traço */
    border-radius: 5px;
    transition: 0.3s;
}

/* Setas (Navigation) */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary);
    background: rgba(255,255,255,0.8);
    width: 50px; height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem; font-weight: bold; }

/* RESPONSIVIDADE ESPECÍFICA DA GALERIA */
@media (max-width: 768px) {
    .swiper-slide {
        height: 200px; /* Menor no celular */
        border-radius: 10px;
    }
    
    /* No celular, queremos que as fotos encostem na borda da tela */
    .gallery { padding: 60px 0; }
    .swiper { padding-left: 20px; padding-right: 20px; }
}


/* --- BLOCO 4: PREÇOS (PRICING) --- */
/* --- ESTILO DO NOVO MENU PREMIUM --- */

/* Ajuste da Seção para receber o Menu */
.pricing-menu-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    position: relative;
    z-index: 1;
}

/* Container centralizado (A "Folha" do menu) */
.pricing-container {
    width: 100%;
    max-width: 700px; /* Largura ideal para leitura */
    margin: 0 auto;
}

/* Cabeçalho do Bloco */
.menu-header { text-align: center; margin-bottom: 40px; }

.menu-header h2 {
    font-size: 3rem;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.menu-header h2 span { font-style: italic; color: #333; }

.tagline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    border-bottom: 2px solid var(--primary);
}

/* O Papel Branco (Cardápio) */
.menu-paper {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(136, 14, 79, 0.15);
    position: relative;
    border: 1px solid rgba(255,255,255,0.5);
}

/* Títulos das Categorias (Unhas Simples, Gel...) */
.menu-category h3 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: #fff0f5;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.highlight-category h3 {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(136, 14, 79, 0.2);
}

/* A Lista de Preços com Pontilhados */
.menu-list { list-style: none; margin-bottom: 40px; }

.menu-list li {
    display: flex;
    align-items: flex-end; /* Alinha a base das letras */
    justify-content: space-between;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.2s;
    padding: 5px;
    border-radius: 5px;
}

.menu-list li:hover {
    background: #fff5f8;
    transform: translateX(5px);
}

.service-name { font-weight: 500; color: #444; font-size: 1.05rem; white-space: nowrap; }

/* A Linha Pontilhada Mágica */
.dots {
    flex-grow: 1; /* Ocupa todo o espaço vazio */
    border-bottom: 2px dotted #ccc;
    margin: 0 10px 5px 10px; /* Margem para afastar do texto */
    opacity: 0.6;
}

.service-price { font-weight: 700; color: var(--primary); font-size: 1.1rem; }

/* Destaque (Mão + Pé) */
.highlight .service-name { color: var(--secondary); font-weight: bold; }

/* Botão Final Gigante */
.btn-agendar-final {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.3);
    transition: transform 0.2s;
}
.btn-agendar-final:hover { transform: translateY(-3px); }
.btn-agendar-final small { display: block; font-size: 0.7rem; text-transform: none; margin-top: 5px; opacity: 0.9; }

/* Infos do Whatsapp */
.whatsapp-info {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsivo */
@media (max-width: 600px) {
    .menu-paper { padding: 30px 20px; }
    .service-name { font-size: 0.9rem; }
    .service-price { font-size: 1rem; }
    .dots { display: none; } /* No celular pequeno, remove os pontos para não quebrar */
    .menu-list li { border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
}


/* --- RODAPÉ (FOOTER) --- */
.footer {
    position: relative;
    background-color: #2e0e36; /* Roxo bem escuro (quase preto) */
    color: #e1bee7; /* Texto lilás claro */
    font-size: 0.95rem;
}

/* Onda do Topo */
.footer-wave {
    position: absolute;
    top: -50px; /* Sobe para cobrir a seção anterior */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.footer-wave .shape-fill {
    fill: #2e0e36; /* A mesma cor do fundo do footer */
}

/* Conteúdo */
.footer-content {
    padding: 20px 5% 0;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; /* Coluna da marca é maior */
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo no Footer */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.footer-logo span { color: var(--secondary); }

.brand-col p { opacity: 0.8; line-height: 1.6; }

/* Títulos das Colunas */
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Efeito de linha embaixo do título */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

/* Links */
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: #e1bee7;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover { color: var(--secondary); padding-left: 5px; }

/* Lista de Contato com Ícones */
.contact-list li {
    display: flex;             /* Garante que ícone e texto fiquem lado a lado */
    align-items: center;       /* Centraliza verticalmente */
    justify-content: flex-start; /* FORÇA tudo para a esquerda */
    gap: 15px;                 /* Espaço igual entre ícone e texto */
    margin-bottom: 15px;       /* Espaço entre as linhas */
}

.contact-list .material-icons {
    width: 24px;               /* Largura fixa igual para todos os ícones */
    text-align: center;        /* Ícone centralizado no espaço dele */
    color: var(--secondary);
    flex-shrink: 0;            /* Impede o ícone de ser esmagado */
}



.contact-list .material-icons { 
    font-size: 1.2rem; 
}

/* Botões Sociais */
.social-links { display: flex; gap: 10px; }

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Barra Inferior (Copyright) */
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.developer strong { color: var(--secondary); }

/* --- MENU HAMBURGUER (MOBILE) --- */

/* 1. Esconde o botão hamburguer no computador */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #880e4f; /* Cor Vinho */
    border-radius: 5px;
}

/* =======================================================
   RESPONSIVIDADE E MENU MOBILE (SUBSTITUA NO FINAL DO CSS)
   ======================================================= */

/* =======================================================
   RESPONSIVIDADE GERAL (Tablets e Menores - < 1024px)
   ======================================================= */
   @media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Cards um embaixo do outro */
        padding: 0 40px;
    }
    
    .hero-content h1 { font-size: 3rem; }
    
    /* Ajuste do Footer para Tablet (2 colunas) */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* =======================================================
   MOBILE (Celulares - < 768px) - AQUI ESTÁ A CORREÇÃO
   ======================================================= */
@media (max-width: 768px) {
    
    /* --- 1. TRAVAMENTO DE TELA (Fim do "Flutuante") --- */
    body, html {
        overflow-x: hidden; /* Garante que nada vaze lateralmente */
        width: 100%;
        position: relative;
    }

    /* --- 2. NAVBAR E HAMBÚRGUER --- */
    .navbar {
        width: 100%;
        padding: 15px 20px; /* Margem segura */
        justify-content: space-between;
        box-sizing: border-box;
    }

    .hamburger {
        display: block;
        z-index: 2005;
        position: relative;
        right: 0;
    }

    /* Esconde menu Desktop */
    .desktop-only, .nav-links { display: none !important; }

    /* --- 3. MENU LATERAL (GAVETA 75%) --- */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        right: 0;
        box-shadow: 0 0 0 100vw rgba(0,0,0,0.7); /* Sombra escura no fundo */
    }

    /* Itens do Menu Mobile */
    .nav-menu .nav-links {
        display: flex !important; /* Força aparecer dentro do menu */
        flex-direction: column;
        gap: 25px;
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .nav-link {
        font-size: 1.2rem; /* Fonte ajustada */
        color: var(--primary);
        font-weight: 600;
        display: block;
    }

    /* Botão Entrar Mobile */
    .mobile-only {
        display: block !important;
        margin-top: 15px;
    }

    .btn-login-mobile {
        padding: 12px 40px;
        background: linear-gradient(45deg, var(--secondary), var(--primary));
        color: #fff !important;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(216, 27, 96, 0.3);
    }

    /* Animação do X */
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* --- 4. HERO SECTION AJUSTADA --- */
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 100px 5% 50px; /* Padding % mantém seguro */
        width: 100%;
        overflow: hidden;
    }
    
    .hero-content h1 { font-size: 2.2rem; }
    
    .image-wrapper img {
        width: 90%; /* Ocupa 90% da largura disponível */
        max-width: 350px;
        height: auto;
        margin-bottom: 30px;
    }

    /* --- 5. RODAPÉ RESPONSIVO (Correção do Vazamento) --- */
    .footer-content {
        padding: 40px 20px 0; /* Mais espaço interno */
    }

    .footer-grid {
        display: flex;
        flex-direction: column; /* Empilha tudo verticalmente */
        gap: 40px;
        text-align: center; /* Centraliza texto */
    }

    /* Ajuste dos títulos para centralizar a linha embaixo */
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Centralizar ícones de contato */
    .contact-list li {
        justify-content: center;
    }
    
    /* Centralizar botões sociais */
    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    
    /* --- 6. AJUSTE SOBRE MIM --- */
    .about-container {
        display: flex;
        flex-direction: column;
    }
    
    .safira-photo img {
        width: 100%;
        max-width: 300px; /* Foto menor no mobile */
        height: auto;
    }
    
    /* Ajuste do Texto Giratório no Mobile */
    .rotating-badge {
        width: 100px;
        height: 100px;
        top: -10px;
        right: 0;
        left: auto;
    }
    .rotating-badge svg { width: 90px; height: 90px; }
}

.btn-agendar-final {font-size: 1.0rem;}

/* === TELAS MUITO PEQUENAS (320px) === */
@media (max-width: 380px) {
    .logo { font-size: 1.4rem; }
    .nav-link { font-size: 1.1rem; }
    .hero-content h1 { font-size: 1.8rem; }
    .btn-login-mobile { padding: 10px 30px; font-size: 0.9rem; }
}