/* 1. Importação da nova fonte (Montserrat) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@600;700;800&display=swap');

:root {
    --primary: #14b8a6;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #f1f5f9;
    --accent: #0f766e;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #fff;
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Mata a barra de rolagem lateral */
    scroll-behavior: smooth;
}

/* ====================== TYPOGRAPHY (ALTERADO) ====================== */
h1, h2, h3, .hero-title, .about-title, .contact-title, .stat-number {
    font-family: 'Montserrat', sans-serif; /* Nova fonte aplicada aqui */
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.75rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
}

/* ====================== CONTAINER ====================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================== NAVBAR ====================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px; /* Aumentado de 20px para 30px para dar respiro lateral */
    max-width: 1200px;  /* Garante que em telas gigantes o menu não fuja para os cantos */
    margin: 0 auto;     /* Centraliza o conteúdo da nav */
}

.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 10px 30px -10px rgba(20, 184, 166, 0.15);
}


.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.menu {
    display: flex;
    gap: 32px;
    font-weight: 500;
}

.menu a {
    text-decoration: none;
    color: var(--dark);
    transition: color 0.3s ease;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary); /* Cor de destaque no hambúrguer */
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: flex; /* Mantemos flex, mas controlamos com opacidade e visibilidade */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed; /* Fixado para cobrir a tela */
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    gap: 25px;
    z-index: 1000;
    
    /* Animação Suave */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* ====================== HERO ====================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.65)),
                url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=2070') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height)
}

.hero-content {
    max-width: 780px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 16px;
}

.highlight {
    color: var(--primary);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.35rem;
    max-width: 520px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px -5px rgba(20, 184, 166, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 35px -10px rgba(20, 184, 166, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.hero-trust {
    display: flex;
    gap: 32px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 1.8rem;
    opacity: 0.7;
}

/* ====================== SECTIONS ====================== */
.section {
    padding: 110px 0;
}

.gray {
    background: var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

/* ====================== SEÇÃO SOBRE - PREMIUM ====================== */

.about-grid {
    gap: 90px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.18);
}

.premium-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover .premium-image {
    transform: scale(1.06);
}

.image-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: white;
    padding: 14px 24px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    text-align: center;
    line-height: 1.3;
}

.image-badge span {
    display: block;
    font-weight: 600;
}

.image-badge .year {
    font-size: 0.95rem;
    color: var(--primary);
    margin-top: 4px;
}

/* Conteúdo textual */
.about-content {
    padding-top: 20px;
}

.badge {
    background: var(--primary);
    color: white;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-title {
    font-size: 2.7rem;
    line-height: 1.18;
    margin-bottom: 28px;
    color: var(--dark);
}

.about-lead {
    font-size: 1.32rem;
    line-height: 1.55;
    font-weight: 500;
    color: #334155;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 48px;
}

/* Estatísticas em cards elegantes */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card {
    background: white;
    padding: 26px 22px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(20, 184, 166, 0.25);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.05rem;
    color: #64748b;
    font-weight: 500;
}

/* Botão CTA */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.about-cta:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* ====================== GRIDS ====================== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* ====================== CARDS & HOVERS ====================== */
.card,
.service-card,
.diff-card,
.team-card,
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card h3,
.service-card h3,
.diff-card h3,
.team-card h3,
.testimonial-card h3{
    padding-bottom: 12px;
}

.card:hover,
.service-card:hover,
.diff-card:hover,
.team-card:hover,
.testimonial-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.25);
}

.diff-card .icon-wrapper,
.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.diff-card:hover .icon-wrapper{
    transform: scale(1.05) rotate(6deg);
}

.service-card:hover i {
    transform: scale(1.15) rotate(8deg);
}

.price {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.team-card {
    background: white;
    border-radius: 24px;
    padding: 20px; /* Reduzi levemente o padding para a imagem brilhar */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.team-card img {
    width: 100%;
    height: 270px; 
    object-fit: cover;
    object-position: center 20%; 
    
    border-radius: 18px;
    margin-bottom: 20px;
    transition: transform 0.4s ease-out;
}

.team-card:hover img {
    transform: scale(1.05);
}

.specialty {
    color: var(--primary);
    font-weight: 600;
    margin: 8px 0;
}

/* Testimonial */
.testimonial-card {
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: 16px;
}

.author {
    margin-top: 24px;
    border-top: 1px solid #f1f1f1;
    padding-top: 16px;
}

.author strong {
    display: block;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.85);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
    color: white;
    padding: 24px 20px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ====================== FORM & CONTACT ====================== */
.contact-wrapper {
    gap: 90px;
    align-items: start;
}

.contact-info {
    padding-right: 40px;
}

/* Título e subtítulo (já herdando a nova fonte) */
.contact-title {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--dark);
}

.contact-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 52px;
    max-width: 380px;
}

/* Lista de informações */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.info-item {
    display: flex;
    gap: 24px;
}

.icon-circle {
    width: 52px;
    height: 52px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .icon-circle {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.info-content .info-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}

.info-content p,
.info-content a {
    font-size: 1.15rem;
    line-height: 1.5;
    color: #334155;
}

.info-link {
    color: #0f766e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--primary);
    text-decoration: underline;
    text-decoration: none;
}

/* Redes Sociais */
.socials-premium {
    display: flex;
    gap: 16px;
    margin-top: 56px;
}

.socials-premium a{
    text-decoration: none;
}

.social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: #64748b;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-4px) scale(1.12);
    box-shadow: 0 15px 25px -8px rgba(20, 184, 166, 0.3);
}

/* Formulário */
.contact-form {
    background: white;
    padding: 48px 42px;
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
}

.form-group {
    margin-bottom: 28px; 
}

.form-group:last-child {
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.15);
    outline: none;
}

/* Textarea */
.contact-form textarea {
    resize: vertical;
    min-height: 148px;
    max-height: 320px;
    line-height: 1.6;
}

/* Botão WhatsApp */
.btn-whatsapp-premium {
    width: 100%;
    background: linear-gradient(90deg, #25d366, #20c65b);
    color: white;
    border: none;
    padding: 20px 32px;
    border-radius: 9999px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 12px;
    cursor: pointer;
}

.btn-whatsapp-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px -10px rgba(37, 211, 102, 0.55);
    background: linear-gradient(90deg, #20c65b, #25d366);
}

/* ====================== BUTTONS ====================== */
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

/* ====================== ANIMAÇÕES DE SCROLL ====================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================== FOOTER ====================== */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-text {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-links a {
    color: white;
    margin-left: 24px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

footer a{
    font-size: 1rem;
    line-height: 1.5;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover{
    color: var(--primary);
    text-decoration: underline;
    text-decoration: none;
}

/* ====================== WHATSAPP FLOAT ====================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
}

/* ====================== CTA TEMPLATE (ADAPTADO) ====================== */

.cta-template {
    padding: 100px 20px;
    margin-top: 60px;
    text-align: center;
    /* Fundo suave para destacar o CTA sem brigar com o branco do site */
    background: var(--gray);
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.cta-template h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem; /* Seguindo a hierarquia do seu h2 */
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.cta-template p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #475569; /* Tom de cinza usado no seu about-text */
    line-height: 1.6;
}

.cta-template .btn-site {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Gradiente e cores baseados no seu .btn-primary */
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    
    padding: 18px 38px;
    border-radius: 50px; /* Estilo pill-button do seu site */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    
    /* Efeito de sombra suave do seu sistema */
    box-shadow: 0 10px 25px -5px rgba(20, 184, 166, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-template .btn-site:hover {
    /* Efeito de hover idêntico aos botões do Hero */
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 35px -10px rgba(20, 184, 166, 0.5);
    filter: brightness(1.1);
}

/* ====================== RESPONSIVIDADE ====================== */
/* Telas Médias (Tablets) */
@media (max-width: 1024px) {
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .contact-info {
        text-align: center;
        padding: 0;
    }
    
    .info-list {
        align-items: center;
    }
}

/* Telas Pequenas (Mobile) */
@media (max-width: 768px) {

    .menu, .nav-cta { 
        display: none !important; /* Remove menu desktop e botão whats da nav */
    }
    
    .menu-btn { 
        display: block; 
    }

    .nav-content {
        padding: 12px 0;
    }

    /* Correção de Grid que quebra o layout */
    .about-grid, .contact-wrapper, .grid-2 {
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 40px;
    }

    /* Impede que imagens ou cards estiquem a tela */
    .premium-image, .contact-form, .card {
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .menu { display: none; }
    
    .menu-btn { display: block; }
    
    .nav-cta { display: none; }
    
    .hero {
        text-align: center;
        padding: 80px 0;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta a {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .menu, .nav-cta { display: none !important; }
    .menu-btn { display: block; }

    /* Ajuste de Seções */
    .section { padding: 60px 0; }
    
    /* Contato no Mobile - Centralizado e Espaçado */
    .contact-wrapper {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .info-list {
        align-items: center;
        width: 100%;
    }

    .info-item {
        flex-direction: column; /* Ícone em cima do texto no mobile */
        gap: 12px;
        width: 100%;
    }

    .contact-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .contact-subtitle {
        margin: 0 auto 40px auto;
    }

    /* Redes Sociais Centralizadas */
    .socials-premium {
        justify-content: center;
        margin-top: 40px;
    }

    /* Cards da Equipe no Mobile */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-card img {
        height: 240px; /* Altura ideal para mobile */
    }

    .nav-content {
        padding: 12px 20px; /* Espaço confortável para o ícone e o hambúrguer no celular */
    }

    .brand {
        gap: 10px; /* Espaço entre o ícone do dente e o texto OdontoAura */
    }

    .logo {
        width: 40px;  /* Ajuste leve para não dominar a barra no mobile */
        height: 40px;
        font-size: 1.4rem;
    }

    .menu-btn {
        padding: 8px; /* Área de clique maior e mais afastada da borda */
        margin-right: -5px; /* Alinhamento óptico */
    }
}

/* Celulares muito pequenos */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .image-badge {
        display: none;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }

    /* Ajuste para o contato não quebrar */
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}

/* ====================== UTILITIES ====================== */
.badge {
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.premium-image {
    border-radius: 28px;
    box-shadow: 30px 30px 0 -10px rgba(20, 184, 166, 0.15);
    width: 100%;
    height: auto;
}

/* Animation keyframes */
@keyframes bounce {
    0%, 20% { transform: translateY(0); }
    50% { transform: translateY(12px); }
    80%, 100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hidden { display: none; }

#status-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    text-align: center;
}

.card-content h3 { color: #2c3e50; margin: 10px 0; }
.card-content button {
    background: #27ae60;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}
