@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:wght@400;500;600&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#eef8ff;
}

.hero{
    min-height:100vh;
    padding:40px 8%;
    background:
    radial-gradient(circle at 30% 30%, rgba(137,210,255,.3), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(137,210,255,.25), transparent 30%),
    #f4fbff;
}

.navbar{
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 80px);
    max-width: 1400px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 35px;

    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(216,177,108,.18);
    border-radius: 18px;

    box-shadow: 0 15px 45px rgba(0,0,0,.08);

    z-index: 9999;

    transition: .35s ease;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:30px;
    font-family:'Cormorant Garamond', serif;
}

.logo-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#d8b16c;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:bold;
    font-size:20px;
    box-shadow:0 8px 20px rgba(216,177,108,.35);
}

.logo strong{
    color:#d8b16c;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:#4f5b6d;
    font-weight:500;
    transition:.3s;
    position:relative;
}

nav a:hover{
    color:#d8b16c;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#d8b16c;
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}

.btn-whatsapp{
    background:#284f7d;
    color:#fff;
    text-decoration:none;
    padding:16px 32px;
    border-radius:999px;
    font-weight:600;
    transition:.35s;
}

.btn-whatsapp:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(40,79,125,.35);
}

.hero{
    padding-top:140px;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 560px;
    gap:80px;
    align-items:center;
}

.badge{
    display:inline-block;
    background:white;
    padding:12px 24px;
    border-radius:999px;
    letter-spacing:3px;
    color:#677487;
    font-size:12px;
    margin-bottom:30px;
}

h1{
    font-family:'Cormorant Garamond',serif;
    font-size:95px;
    line-height:.92;
    color:#0f1b2e;
    margin-bottom:30px;
    font-weight:500;
}

h1 span{
    color:#d8b16c;
    font-style:italic;
}

.hero-left p{
    font-size:28px;
    line-height:1.7;
    color:#617082;
    max-width:750px;
}

.buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-primary{
    background:#284f7d;
    color:white;
    text-decoration:none;
    padding:20px 35px;
    border-radius:999px;
    font-weight:600;
}

.btn-secondary{
    border:1px solid #d8dfe8;
    color:#223;
    text-decoration:none;
    padding:20px 35px;
    border-radius:999px;
}

.stats{
    display:flex;
    gap:100px;
    margin-top:70px;
    padding-top:40px;
    border-top:1px solid #dbe5ef;
}

.stats h3{
    font-family:'Cormorant Garamond',serif;
    font-size:50px;
    color:#12213a;
}

.stats span{
    color:#697788;
}

.hero-right{
    position:relative;
}

.hero-right img{
    width:100%;
    border-radius:40px;
    display:block;
}

.floating-card{
    position:absolute;
    left:-40px;
    bottom:80px;

    background:white;
    border-radius:24px;
    padding:18px 22px;

    display:flex;
    gap:15px;
    align-items:center;

    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#d8b16c;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
}

.floating-card small{
    display:block;
    color:#9ca7b5;
    letter-spacing:2px;
}

.floating-card strong{
    color:#1f2c40;
}

.bio-card{
    position:absolute;
    left:25px;
    right:25px;
    bottom:20px;

    background:rgba(255,255,255,.9);
    backdrop-filter:blur(10px);

    border-radius:24px;
    padding:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.bio-card h4{
    margin-bottom:5px;
    color:#1a2537;
}

.bio-card span{
    color:#687789;
}

.bio-card button{
    border:none;
    background:#eef2f5;
    padding:12px 18px;
    border-radius:999px;
    cursor:pointer;
}


/* =======================================
   SOBRE
======================================= */

.about{
    max-width:1400px;
    margin:120px auto;
    padding:0 60px;

    display:grid;
    grid-template-columns:520px 1fr;
    gap:100px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    height:580px;
    object-fit:cover;
    border-radius:36px;
    display:block;
}

.emergency-card{
    position:absolute;
    bottom:-40px;
    right:-25px;

    background:white;
    padding:28px 24px;

    border-radius:28px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);

    text-align:center;
}

.emergency-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    line-height:1;
    color:#d5b06a;
    margin-bottom:8px;
}

.emergency-card span{
    font-size:14px;
    letter-spacing:2px;
    color:#66768a;
    line-height:1.4;
}

.section-tag{
    display:block;

    margin-bottom:25px;

    font-size:14px;
    letter-spacing:5px;
    color:#6d7a89;
}

.about-content h2{
    font-family:'Cormorant Garamond',serif;

    font-size:82px;
    line-height:.95;
    font-weight:500;

    color:#091628;

    margin-bottom:35px;
}

.about-content h2 span{
    display:block;
    color:#d5b06a;
    font-style:italic;
}

.about-content p{
    max-width:760px;

    font-size:20px;
    line-height:1.8;

    color:#66768a;

    margin-bottom:50px;
}

.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 20px;
}

.info-item{
    padding:22px 0;
    border-top:1px solid #dde4eb;
}

.info-item small{
    display:block;

    font-size:13px;
    letter-spacing:2px;

    color:#708091;

    margin-bottom:12px;
}

.info-item h4{
    font-family:'Cormorant Garamond',serif;

    font-size:36px;
    font-weight:500;

    color:#101d2d;
}

.specialties-tags{
    display:flex;
    flex-wrap:wrap;
    gap:14px;

    margin-top:40px;
}

.specialties-tags span{
    padding:12px 22px;

    border:1px solid #d9e2eb;
    border-radius:999px;

    font-size:14px;
    color:#647488;

    background:white;
}


/* ==========================================
   ESPECIALIDADES
========================================== */

.specialties{
    padding:140px 8%;
    background:#f4fbff;
}

.specialties-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:80px;
    margin-bottom:70px;
}

.specialties-title{
    max-width:700px;
}

.section-label{
    display:block;
    margin-bottom:20px;

    font-size:13px;
    letter-spacing:4px;
    color:#6f7f90;
}

.specialties-title h2{
    font-family:'Cormorant Garamond',serif;
    font-size:82px;
    line-height:.95;
    font-weight:500;
    color:#091728;
}

.specialties-title h2 span{
    color:#d6b06a;
    font-style:italic;
}

.specialties-description{
    max-width:360px;

    font-size:20px;
    line-height:1.8;
    color:#647488;
}

.specialties-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.specialty-card{
    background:white;

    border-radius:28px;

    padding:28px;

    min-height:210px;

    transition:.3s;

    box-shadow:
    0 15px 40px rgba(180,215,240,.18);
}

.specialty-card:hover{
    transform:translateY(-8px);
}

.specialty-icon{
    width:44px;
    height:44px;

    border-radius:50%;

    background:#d8ebfb;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#2e5b87;
    font-size:18px;

    margin-bottom:28px;
}

.specialty-card h3{
    font-family:'Cormorant Garamond',serif;

    font-size:34px;
    font-weight:500;

    color:#0d1b2e;

    margin-bottom:12px;
}

.specialty-card p{
    color:#68788a;

    font-size:16px;
    line-height:1.8;
}


/* ======================================
   CLÍNICA
====================================== */

.clinic{
    padding:140px 8%;
    background:#f7fbff;
}

.clinic-header{
    margin-bottom:60px;
}

.clinic-header .section-label{
    display:block;
    margin-bottom:20px;

    font-size:13px;
    letter-spacing:4px;
    color:#708091;
}

.clinic-header h2{
    max-width:620px;

    font-family:'Cormorant Garamond',serif;
    font-size:78px;
    line-height:.95;
    font-weight:500;

    color:#091728;
}

.clinic-header h2 span{
    color:#d7b26b;
    font-style:italic;
}

/* GALERIA */

.clinic-gallery{
    display:grid;
    grid-template-columns:2.2fr 1fr;
    gap:18px;
}

.gallery-large{
    height:690px;
    overflow:hidden;
    border-radius:32px;
}

.gallery-large img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gallery-column{
    display:grid;
    grid-template-rows:1fr 1fr;
    gap:18px;
}

.gallery-small{
    overflow:hidden;
    border-radius:32px;
    height:336px;
}

.gallery-small img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* efeito premium */

.gallery-large,
.gallery-small{
    position:relative;
    box-shadow:
    0 20px 60px rgba(187,216,238,.18);
}

.gallery-large img,
.gallery-small img{
    transition:.6s ease;
}

.gallery-large:hover img,
.gallery-small:hover img{
    transform:scale(1.05);
}

/* ===================================
   DIFERENCIAIS
=================================== */

.advantages{
    background:#2f5b87;
    padding:120px 8%;
    position:relative;
    overflow:hidden;
}

.advantages::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    left:-150px;
    top:-150px;

    background:rgba(255,255,255,.08);
    filter:blur(120px);
    border-radius:50%;
}

.advantages::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    right:-150px;
    top:-100px;

    background:rgba(255,255,255,.06);
    filter:blur(120px);
    border-radius:50%;
}

.light{
    color:#d9e7f4;
}

.advantages h2{
    margin-top:20px;

    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    font-weight:500;
    color:white;

    margin-bottom:70px;
}

.advantages h2 span{
    color:#d8b16c;
    font-style:italic;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.advantage-item{
    border-top:1px solid rgba(255,255,255,.4);
    padding-top:25px;
}

.advantage-item h3{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    color:white;
    font-weight:500;
}

.advantage-item h3::after{
    color:#d8b16c;
}

.advantage-item span{
    display:block;
    margin-top:10px;

    font-size:12px;
    letter-spacing:2px;

    color:rgba(255,255,255,.7);
}


/* ===================================
   DEPOIMENTOS
=================================== */

.testimonials{
    padding:140px 8%;
    background:#f7fbff;
}

.testimonials h2{
    margin-top:20px;
    margin-bottom:60px;

    max-width:600px;

    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:.95;
    font-weight:500;

    color:#0f1b2e;
}

.testimonials h2 span{
    color:#d8b16c;
    font-style:italic;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.testimonial-card{
    background:white;

    border-radius:28px;

    padding:30px;

    min-height:270px;

    box-shadow:
    0 20px 50px rgba(182,212,235,.18);

    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.quote{
    font-size:60px;
    color:#d8b16c;
    line-height:1;
    font-family:'Cormorant Garamond',serif;
}

.testimonial-card p{
    color:#5f6e82;
    line-height:1.9;
    font-size:15px;
}

.author{
    border-top:1px solid #e4ebf2;
    padding-top:18px;
}

.author strong{
    display:block;
    font-family:'Cormorant Garamond',serif;
    font-size:24px;
    color:#111f32;
}

.author span{
    font-size:13px;
    color:#7a8897;
}

/* ==================================
   FAQ
================================== */

.faq{
    background:#eaf8ff;
    padding:140px 8%;

    display:grid;
    grid-template-columns:420px 1fr;
    gap:80px;
    align-items:start;
}

.faq h2{
    margin:15px 0 20px;

    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:.95;
    color:#091728;
}

.faq h2 span{
    color:#d8b16c;
    font-style:italic;
}

.faq-left p{
    color:#667789;
    line-height:1.8;
}

.faq-right{
    background:white;
    border-radius:24px;
    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(182,212,235,.18);
}

.accordion{
    border-bottom:1px solid #e5edf4;
}

.accordion:last-child{
    border-bottom:none;
}

.accordion-header{
    width:100%;
    border:none;
    background:none;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:24px 30px;

    cursor:pointer;

    font-family:'Cormorant Garamond',serif;
    font-size:24px;
    color:#0f1b2e;
}

.accordion-header span{
    width:28px;
    height:28px;

    border:1px solid #dbe5ef;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;
}

.accordion-content{
    display:none;
    padding:0 30px 24px;
    color:#667789;
    line-height:1.8;
}

.accordion.active .accordion-content{
    display:block;
}

/* ==================================
   LOCALIZAÇÃO
================================== */

.location{
    padding:140px 8%;
    background:white;
}

.location-header{
    margin-bottom:50px;
}

.location h2{
    margin-top:15px;

    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    color:#091728;
}

.location h2 span{
    color:#d8b16c;
    font-style:italic;
}

.location-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:25px;
}

.location-card{
    background:white;
    border-radius:28px;
    padding:35px;

    box-shadow:
    0 20px 60px rgba(182,212,235,.18);
}

.location-block{
    margin-bottom:25px;
}

.location-block small,
.location-info small{
    display:block;
    margin-bottom:8px;

    font-size:12px;
    letter-spacing:2px;
    color:#7a8898;
}

.location-block p,
.location-info p{
    color:#132033;
    line-height:1.8;
}

.location-info{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:20px;

    padding:20px 0;

    margin:25px 0;

    border-top:1px solid #e5edf4;
    border-bottom:1px solid #e5edf4;
}

.location-block span{
    color:#d8b16c;
}

.location-buttons{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.map-box{
    overflow:hidden;
    border-radius:28px;

    min-height:500px;

    box-shadow:
    0 20px 60px rgba(182,212,235,.18);
}

.map-box iframe{
    width:100%;
    height:100%;
    border:none;
}

/* ==========================================
   CTA FINAL
========================================== */

.final-cta{
    position:relative;

    padding:140px 20px;

    background:
    radial-gradient(
        circle at center,
        rgba(183,220,247,.45) 0%,
        rgba(183,220,247,.18) 25%,
        transparent 70%
    ),
    #f8fcff;

    text-align:center;
}

.cta-content{
    max-width:900px;
    margin:auto;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 20px;

    border:1px solid #dce8f2;
    border-radius:999px;

    background:white;

    font-size:12px;
    letter-spacing:2px;

    color:#728194;
}

.final-cta h2{
    margin:35px 0 25px;

    font-family:'Cormorant Garamond',serif;
    font-size:88px;
    line-height:.92;
    font-weight:500;

    color:#091728;
}

.final-cta h2 span{
    color:#d8b16c;
    font-style:italic;
}

.final-cta p{
    max-width:650px;
    margin:0 auto;

    color:#69788b;
    line-height:1.8;
    font-size:18px;
}

.cta-buttons{
    margin-top:40px;

    display:flex;
    justify-content:center;
    gap:15px;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 34px;

    background:#2f5b87;
    color:white;

    text-decoration:none;
    font-weight:500;

    border-radius:999px;

    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 34px;

    border:1px solid #d8e3ec;

    color:#223347;
    text-decoration:none;

    border-radius:999px;

    background:white;
}

.footer{
    background:#0f172a;
    color:#fff;
    padding:70px 8% 25px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr 1.2fr;
    gap:60px;
    margin-bottom:50px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.footer-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:linear-gradient(135deg,#d4af37,#f6d776);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    color:#111;
    box-shadow:0 10px 30px rgba(212,175,55,.3);
}

.footer-logo h3{
    font-size:24px;
    margin-bottom:4px;
}

.footer-logo p{
    color:#b6bcc8;
}

.footer-description{
    color:#b6bcc8;
    line-height:1.8;
    max-width:400px;
}

.footer-column h4{
    color:#d4af37;
    margin-bottom:22px;
    font-size:18px;
}

.footer-column a{
    display:block;
    color:#d7dce4;
    text-decoration:none;
    margin-bottom:14px;
    transition:.3s;
}

.footer-column a:hover{
    color:#d4af37;
    transform:translateX(6px);
}

.footer-column p{
    color:#b6bcc8;
    line-height:1.8;
    margin-bottom:18px;
}

.footer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    border-radius:50px;
    background:#25D366;
    color:#fff!important;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.footer-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(37,211,102,.35);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom span{
    color:#9da6b6;
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1e293b;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    transition:.35s;
}

.footer-social a:hover{
    background:#d4af37;
    color:#111;
    transform:translateY(-6px) rotate(8deg);
}



.testimonials{
    padding:140px 8%;
    background:#f7fbff;
    text-align:center; /* 👈 isso aqui resolve o centro visual */
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:60px;
    text-align:left; /* mantém cards normais */
}

.google-more-reviews {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.google-btn {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 22px 34px; /* 👈 maior */
    border-radius: 18px;

    background: #fff;
    border: 1px solid #e6e6e6;

    text-decoration: none;
    color: #111;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);

    transition: all 0.3s ease;

    min-width: 380px;  /* 👈 mais central e impactante */
}

.google-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.google-icon img {
    width: 32px;
    height: 32px;
}

.google-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.google-text .small {
    font-size: 13px;
    color: #777;
}

.google-text .big {
    font-size: 18px;
    font-weight: 700;
}

.arrow {
    margin-left: auto;
    font-size: 20px;
    color: #999;
}


/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

/* 1. NOTEBOOKS E TELAS MÉDIAS (Até 1200px) */
@media (max-width: 1200px) {
    h1 { font-size: 75px; }
    .about-content h2, .specialties-title h2, .clinic-header h2, .advantages h2, .testimonials h2, .faq h2, .location h2, .final-cta h2 { font-size: 60px; }
    .hero-content { grid-template-columns: 1fr 450px; gap: 40px; }
    .about { grid-template-columns: 1fr 1fr; gap: 50px; }
    .specialties-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* 2. TABLETS (Até 992px) */
@media (max-width: 992px) {
    /* Ajustes Gerais de Padding */
    .hero, .specialties, .clinic, .advantages, .testimonials, .faq, .location { padding: 100px 5%; }
    .about { padding: 0 5%; margin: 80px auto; }

    /* Navbar Mobile (Oculta o menu padrão ou empilha) */
    .navbar { 
        position: absolute; 
        width: calc(100% - 40px); 
        padding: 15px 25px; 
        flex-direction: column; 
        gap: 15px;
        text-align: center;
    }
    nav { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .btn-whatsapp { padding: 10px 24px; font-size: 14px; }

    /* Hero Section */
    .hero { padding-top: 220px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-left p { max-width: 100%; font-size: 22px; }
    .buttons { justify-content: center; }
    .stats { justify-content: center; gap: 50px; }
    .hero-right { max-width: 560px; margin: 0 auto; }

    /* Sobre */
    .about { grid-template-columns: 1fr; gap: 60px; }
    .about-image { max-width: 520px; margin: 0 auto; }
    .about-content { text-align: center; }
    .about-content p { max-width: 100%; }
    .specialties-tags { justify-content: center; }

    /* Especialidades e Clínica */
    .specialties-header { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
    .specialties-description { max-width: 100%; }
    .clinic-header { text-align: center; }
    .clinic-header h2 { margin: 0 auto; }
    .clinic-gallery { grid-template-columns: 1fr; }
    .gallery-large { height: 450px; }

    /* FAQ e Localização */
    .faq { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .map-box { min-height: 400px; }

    /* Rodapé */
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* 3. CELULARES GRANDES / SMARTPHONES (Até 768px) */
@media (max-width: 768px) {
    h1 { font-size: 52px; }
    .about-content h2, .specialties-title h2, .clinic-header h2, .advantages h2, .testimonials h2, .faq h2, .location h2, .final-cta h2 { font-size: 42px; }
    
    .stats { flex-direction: column; gap: 30px; align-items: center; }
    .stats h3 { font-size: 40px; }
    
    .specialties-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .info-grid { grid-template-columns: 1fr; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; flex-direction: column; text-align: center; }
    .footer-description { max-width: 100%; }
    .footer-column a:hover { transform: translateX(0) scale(1.03); }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* 4. CELULARES PEQUENOS (Até 480px) */
@media (max-width: 480px) {
    h1 { font-size: 40px; }
    .about-content h2, .specialties-title h2, .clinic-header h2, .advantages h2, .testimonials h2, .faq h2, .location h2, .final-cta h2 { font-size: 34px; }
    
    .hero { padding-top: 260px; padding-left: 15px; padding-right: 15px; }
    .buttons, .cta-buttons { flex-direction: column; gap: 12px; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 16px 25px; }
    
    .floating-card { left: 10px; bottom: 20px; padding: 12px; }
    .bio-card { left: 10px; right: 10px; bottom: 10px; padding: 12px; flex-direction: column; gap: 10px; text-align: center; }
    .emergency-card { right: 10px; bottom: -20px; padding: 15px; }
    .emergency-card h3 { font-size: 40px; }

    .google-btn { min-width: 100%; padding: 16px; }
    .google-text .big { font-size: 15px; }

    .accordion-header { padding: 20px; font-size: 18px; }
    .location-info { grid-template-columns: 1fr; }
}