/* ============================================
   Dr. Rafael Ragonezi - Onepage Premium
   Paleta: #983232 (marca) | #444444 (ink/títulos) | #C5A059 (dourado) | #FFFFFF | #F9F9F9 | #27d045
   Tipografia: Playfair Display (títulos) + Montserrat (corpo)
   ============================================ */

:root {
    --c-navy: #983232;
    --c-navy-2: #7a2828;
    --c-gold: #C5A059;
    --c-gold-soft: #d8bd86;
    --c-white: #ffffff;
    --c-soft: #f9f9f9;
    --c-gray: #6b7280;
    --c-gray-2: #e5e7eb;
    --c-wa: #27d045;
    --c-wa-dark: #1fa937;
    --c-ink: #444444;
    --c-ink-2: #2a3036;

    --font-title: "Playfair Display", Georgia, serif;
    --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --header-h: 100px;
    --container: 1200px;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 10px 30px rgba(152, 50, 50, 0.08);
    --shadow-lg: 0 24px 60px rgba(152, 50, 50, 0.18);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.4s var(--ease);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--c-ink);
    line-height: 1.65;
    background: var(--c-white);
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 700; line-height: 1.15; margin: 0; }
p { margin: 0; }

/* CONTAINER */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid rgba(152, 50, 50, 0.06);
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 24px rgba(152, 50, 50, 0.08);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

/* LOGO */
.logo { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.logo__img { height: 84px; width: auto; object-fit: contain; }
.logo__text {
    display: none;
    flex-direction: column;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--c-ink);
    letter-spacing: 0.02em;
}
.logo:not(:has(.logo__img)) .logo__text { display: inline-flex; }
.logo__text small {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-top: 2px;
}

/* NAV */
.nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav__link {
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-ink);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition);
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--c-gold);
    transition: width var(--transition);
}
.nav__link:hover, .nav__link.is-active { color: var(--c-gold); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link--cta {
    background: var(--c-navy);
    color: var(--c-white);
    padding: 10px 22px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--c-gold); color: var(--c-navy); }

/* HAMBÚRGUER */
.nav__toggle { display: none; width: 28px; height: 22px; position: relative; z-index: 110; }
.nav__toggle-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--c-ink);
    transition: transform var(--transition), opacity var(--transition), top var(--transition);
}
.nav__toggle-bar:nth-child(1) { top: 0; }
.nav__toggle-bar:nth-child(2) { top: 10px; }
.nav__toggle-bar:nth-child(3) { top: 20px; }
body.nav-open .nav__toggle-bar:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.nav-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle-bar:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background-color: var(--c-navy);
    background-image: url("../assets/img/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--c-white);
    overflow: hidden;
    padding: calc(var(--header-h) + 40px) 0 60px;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(152, 50, 50, 0.75);
    z-index: 1;
}
.hero__content { position: relative; z-index: 2; max-width: 720px; }
.hero__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--c-gold);
    font-weight: 600;
    margin-bottom: 20px;
}
.hero__title {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
}
.hero__accent {
    display: block;
    font-style: italic;
    font-weight: 600;
    color: var(--c-gold);
}
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.86);
    max-width: 560px;
    margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    z-index: 2;
}
.hero__scroll span {
    position: absolute;
    top: 8px; left: 50%;
    width: 4px; height: 8px;
    margin-left: -2px;
    background: var(--c-gold);
    border-radius: 2px;
    animation: scrolldown 1.8s infinite var(--ease);
}
@keyframes scrolldown {
    0% { opacity: 0; transform: translateY(-6px); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

/* ============ BOTÕES ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 999px;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
    will-change: transform;
}
.btn__icon { width: 20px; height: 20px; flex: none; }
.btn--whatsapp {
    background: var(--c-wa);
    color: #fff;
    box-shadow: 0 10px 24px rgba(39, 208, 69, 0.35);
}
.btn--whatsapp:hover { background: var(--c-wa-dark); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(39, 208, 69, 0.45); }
.btn--lg { padding: 18px 38px; font-size: 1rem; }
.btn--ghost {
    background: transparent;
    color: var(--c-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold); transform: translateY(-3px); }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section__head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section__eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--c-gold);
    font-weight: 600;
    margin-bottom: 14px;
    position: relative;
    padding: 0 32px;
}
.section__eyebrow::before, .section__eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 22px; height: 1px;
    background: var(--c-gold);
}
.section__eyebrow::before { left: 0; }
.section__eyebrow::after { right: 0; }
.section__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--c-ink);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.section__intro {
    color: var(--c-gray);
    font-size: 1.02rem;
    font-weight: 300;
}

/* ============ SOBRE ============ */
.sobre { background: var(--c-soft); }
.sobre__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.sobre__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--c-ink);
}
.sobre__photo::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: calc(var(--radius) - 6px);
    pointer-events: none;
}
.sobre__photo .ph { width: 100%; height: 100%; object-fit: cover; }
.ph__label {
    position: absolute;
    bottom: 18px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}
.sobre__creds {
    margin: 24px 0 32px;
    display: grid;
    gap: 12px;
}
.sobre__creds li {
    position: relative;
    padding-left: 26px;
    font-size: 0.96rem;
    color: #2f3a4a;
}
.sobre__creds li::before {
    content: "";
    position: absolute;
    left: 0; top: 10px;
    width: 14px; height: 2px;
    background: var(--c-gold);
}
.sobre__creds strong { color: var(--c-ink); font-weight: 600; }

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 28px 0;
    border-top: 1px solid var(--c-gray-2);
    border-bottom: 1px solid var(--c-gray-2);
    margin-bottom: 22px;
}
.stats__item { text-align: center; }
.stats__num {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 6px;
}
.stats__label {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-gray);
    font-weight: 500;
}
.sobre__cro {
    font-family: var(--font-title);
    font-style: italic;
    color: var(--c-ink);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
}

/* ============ TRATAMENTOS ============ */
.tratamentos { background: var(--c-white); }
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}
.card {
    background: var(--c-white);
    border: 1px solid var(--c-gray-2);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--c-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.12);
    color: var(--c-gold);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: background var(--transition), color var(--transition);
}
.card:hover .card__icon { background: var(--c-gold); color: var(--c-white); }
.card__icon svg { width: 30px; height: 30px; }
.card__title {
    font-size: 1.4rem;
    color: var(--c-ink);
    margin-bottom: 12px;
}
.card__desc { color: var(--c-gray); font-size: 0.95rem; font-weight: 300; margin-bottom: 20px; }
.card__tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-gold);
    padding-top: 16px;
    border-top: 1px solid var(--c-gray-2);
    width: 100%;
}
.tratamentos__cta { text-align: center; margin-top: 56px; }

/* ============ FAQ / ACCORDION ============ */
.faq { background: var(--c-soft); }
.faq__list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq__item {
    background: var(--c-white);
    border: 1px solid var(--c-gray-2);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__item.is-open {
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 14px 40px rgba(152, 50, 50, 0.08);
}
.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    padding: 22px 26px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.06rem;
    color: var(--c-ink);
    letter-spacing: 0.005em;
    line-height: 1.4;
    transition: color var(--transition);
}
.faq__q:hover { color: var(--c-navy); }
.faq__item.is-open .faq__q { color: var(--c-navy); }
.faq__q-text { flex: 1; }
.faq__q-icon {
    position: relative;
    width: 22px; height: 22px;
    flex: none;
    color: var(--c-gold);
    transition: transform var(--transition), color var(--transition);
}
.faq__q-icon::before, .faq__q-icon::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    background: currentColor;
    border-radius: 2px;
}
.faq__q-icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__q-icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__q-icon { transform: rotate(45deg); color: var(--c-navy); }

.faq__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner {
    overflow: hidden;
    min-height: 0;
}
.faq__a p {
    padding: 0 26px 26px;
    color: var(--c-gray);
    font-size: 0.96rem;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.faq__item.is-open .faq__a p { opacity: 1; transform: none; transition-delay: 0.12s; }

.faq__cta { text-align: center; margin-top: 48px; }

/* ============ CLÍNICAS ============ */
.clinicas { background: var(--c-white); }
.clinicas__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.clinica {
    background: var(--c-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.clinica:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.clinica__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--c-ink);
}
.clinica__media .ph { width: 100%; height: 100%; object-fit: cover; }
.clinica__body { padding: 30px; }
.clinica__name { font-size: 1.6rem; color: var(--c-ink); margin-bottom: 4px; }
.clinica__area {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-gold);
    font-weight: 600;
    margin-bottom: 18px;
}
.clinica__info { display: grid; gap: 10px; margin-bottom: 22px; font-size: 0.92rem; color: #2f3a4a; }
.clinica__info strong { color: var(--c-ink); font-weight: 600; }
.clinica__info em { font-style: italic; color: var(--c-gray); font-size: 0.86rem; }
.clinica__info a:hover { color: var(--c-gold); }
.clinica__maps { display: flex; gap: 12px; flex-wrap: wrap; }
.clinica__maps a {
    flex: 1;
    min-width: 130px;
    text-align: center;
    padding: 10px 16px;
    border: 1px solid var(--c-ink);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--c-ink);
    transition: background var(--transition), color var(--transition);
}
.clinica__maps a:hover { background: var(--c-ink); color: var(--c-white); }

/* ============ CONTATO ============ */
.contato { background: var(--c-navy); color: var(--c-white); }
.contato .section__title { color: var(--c-white); }
.contato .section__intro { color: rgba(255, 255, 255, 0.75); }
.contato__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
.contato__list { display: grid; gap: 22px; margin-top: 32px; }
.contato__list li { display: flex; gap: 16px; align-items: flex-start; }
.contato__ico {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.15);
    color: var(--c-gold);
    display: grid;
    place-items: center;
    flex: none;
}
.contato__ico svg { width: 22px; height: 22px; }
.contato__list strong { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 4px; font-weight: 600; }
.contato__list a { color: var(--c-white); transition: color var(--transition); }
.contato__list a:hover { color: var(--c-gold); }

.contato__cta {
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}
.contato__cta-title { font-size: 1.7rem; margin-bottom: 14px; color: var(--c-white); }
.contato__cta-text { color: rgba(255, 255, 255, 0.78); font-weight: 300; margin-bottom: 28px; }

/* ============ FOOTER ============ */
.footer { background: #6e1f1f; color: rgba(255, 255, 255, 0.7); padding: 50px 0 24px; }
.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__logo { height: 60px; width: auto; margin-bottom: 14px; }
.footer__role { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-gold); }
.footer__social { display: flex; gap: 18px; }
.footer__ig {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    transition: border-color var(--transition), color var(--transition);
}
.footer__ig svg { width: 20px; height: 20px; }
.footer__ig:hover { border-color: var(--c-gold); color: var(--c-gold); }
.footer__copy { text-align: center; padding-top: 22px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 22px; right: 22px;
    width: 58px; height: 58px;
    background: var(--c-wa);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(39, 208, 69, 0.4);
    z-index: 90;
    transition: transform var(--transition), background var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); background: var(--c-wa-dark); }
.whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--c-wa);
    z-index: -1;
    animation: pulse 2.2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* ============ ANIMAÇÕES REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero__scroll span, .whatsapp-float__pulse { animation: none; }
}

/* ============ RESPONSIVO ============ */
@media (min-width: 640px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
    .clinicas__grid { grid-template-columns: 1fr; }
    .stats { gap: 28px; }
}

@media (min-width: 768px) {
    .sobre__grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
    .clinicas__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .contato__grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
    .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
    .section { padding: 130px 0; }
    .cards { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
    .card { padding: 40px 28px; }
}

/* MOBILE NAV */
@media (max-width: 900px) {
    :root { --header-h: 82px; }
    .logo__img { height: 64px; }
    .nav__toggle { display: block; }
    .nav__list {
        position: fixed;
        top: 0; right: 0;
        height: 100vh; height: 100svh;
        width: min(82vw, 340px);
        background: var(--c-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        padding: 80px 32px 40px;
        transform: translateX(100%);
        transition: transform 0.45s var(--ease);
        box-shadow: -20px 0 60px rgba(152, 50, 50, 0.18);
        z-index: 105;
    }
    body.nav-open .nav__list { transform: translateX(0); }
    .nav__link { font-size: 1rem; letter-spacing: 0.1em; }
    .nav__link--cta { padding: 12px 26px; }
    body.nav-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(20, 8, 8, 0.55);
        z-index: 104;
    }
    body.nav-open .header { z-index: 120; }
    .stats { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
    .stats__item { display: flex; align-items: baseline; gap: 14px; justify-content: center; text-align: left; }
    .stats__num { margin-bottom: 0; flex: none; }
    .hero { padding-top: calc(var(--header-h) + 30px); }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { justify-content: center; }
    .contato__cta { padding: 28px 22px; }
    .clinica__body { padding: 24px; }
    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
}
