/* 
 * Dr. Marco Abud - Saúde da Mente
 * Estilos principais da landing page
 */

/* Reset e Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Variáveis CSS */
:root {
    --color-teal: #00B4D8;
    --color-teal-dark: #0096C7;
    --color-teal-light: #E0F7FA;
    --color-navy: #0D1B2A;
    --color-white: #FFFFFF;
    --color-off-white: #F5F9FC;
    --color-text-dark: #1A1A2E;
    --color-text-body: #444444;
    --color-text-light: #FFFFFF;
    --color-whatsapp-green: #25D366;
    --color-youtube-red: #FF0000;

    --font-montserrat: 'Montserrat', sans-serif;
    --font-opensans: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-opensans);
    color: var(--color-text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Tipografia */
.font-montserrat {
    font-family: var(--font-montserrat);
}

.font-opensans {
    font-family: var(--font-opensans);
}

/* Cores */
.bg-navy { background-color: var(--color-navy); }
.bg-white { background-color: var(--color-white); }
.bg-off-white { background-color: var(--color-off-white); }
.bg-teal { background-color: var(--color-teal); }
.bg-teal-dark { background-color: var(--color-teal-dark); }
.bg-whatsapp-green { background-color: var(--color-whatsapp-green); }
.bg-youtube-red { background-color: var(--color-youtube-red); }

.text-white { color: var(--color-white); }
.text-teal { color: var(--color-teal); }
.text-text-dark { color: var(--color-text-dark); }
.text-text-body { color: var(--color-text-body); }

/* Layout */
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

.pt-20 { padding-top: 5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }

.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Flexbox */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

/* Grid */
.grid { display: grid; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* Width/Height */
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-auto { width: auto; }
.h-auto { height: auto; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.min-h-screen { min-height: 100vh; }

/* Aspect Ratio */
.aspect-video { aspect-ratio: 16 / 9; }

/* Text */
.text-center { text-align: center; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }

/* Background */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-navy { --tw-gradient-from: var(--color-navy); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(13, 27, 42, 0)); }
.from-teal { --tw-gradient-from: var(--color-teal); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 180, 216, 0)); }
.to-teal-dark { --tw-gradient-to: var(--color-teal-dark); }

/* Border */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.border-2 { border-width: 2px; }
.border-l-4 { border-left-width: 4px; }
.border-teal { border-color: var(--color-teal); }
.border-t { border-top-width: 1px; }
.border-gray-100 { border-color: #f3f4f6; }

/* Shadow */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Object Fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }

/* Transitions */
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Opacity */
.opacity-90 { opacity: 0.9; }

/* Transform */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:scale-\[1\.03\]:hover { transform: scale(1.03); }

/* Hover States */
.hover\:bg-teal-dark:hover { background-color: var(--color-teal-dark); }
.hover\:bg-teal:hover { background-color: var(--color-teal); }
.hover\:bg-white\/90:hover { background-color: rgba(255, 255, 255, 0.9); }
.hover\:text-teal:hover { color: var(--color-teal); }
.hover\:text-white:hover { color: var(--color-white); }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:brightness-110:hover { filter: brightness(1.1); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:bg-black\/10 { background-color: rgba(0, 0, 0, 0.1); }

/* Responsive - SM (640px) */
@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
    .sm\:p-8 { padding: 2rem; }
    .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
    .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .sm\:w-\[350px\] { width: 350px; }
    .sm\:h-14 { height: 3.5rem; }
    .sm\:w-14 { width: 3.5rem; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Responsive - MD (768px) */
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:flex-row { flex-direction: row; }
    .md\:items-end { align-items: flex-end; }
    .md\:gap-16 { gap: 4rem; }
    .md\:min-h-\[calc\(100vh-5rem\)\] { min-height: calc(100vh - 5rem); }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:justify-end { justify-content: flex-end; }
    .md\:w-\[420px\] { width: 420px; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:block { display: block; }
}

/* Responsive - LG (1024px) */
@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:w-\[500px\] { width: 500px; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Responsive - XL (1280px) */
@media (min-width: 1280px) {
    .xl\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .xl\:w-\[550px\] { width: 550px; }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Colors with Opacity */
.bg-teal\/20 { background-color: rgba(0, 180, 216, 0.2); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-black\/0 { background-color: rgba(0, 0, 0, 0); }
.text-white\/85 { color: rgba(255, 255, 255, 0.85); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/75 { color: rgba(255, 255, 255, 0.75); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/30 { color: rgba(255, 255, 255, 0.3); }

/* Club Section Gradient */
.bg-gradient-to-br.from-teal.to-teal-dark {
    background: linear-gradient(to bottom right, var(--color-teal), var(--color-teal-dark));
}

/* Navbar scroll effect handled by JS */
#navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


/* Hero gradient overlay */
.bg-gradient-to-r.from-navy {
    background: linear-gradient(to right, var(--color-navy) 0%, rgba(13, 27, 42, 0.95) 50%, rgba(13, 27, 42, 0.7) 100%);
}

/* Mobile hero: keep headline clear below fixed navbar */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 5.5rem;
    }

    /*
     * Recorte PNG sem fundo: o limite inferior parece “cortado”.
     * Máscara em gradiente dissolve a imagem no fundo navy — sem cards/camadas decorativas.
     */
    .hero-section .hero-figure {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-section .hero-image {
        -webkit-mask-image: linear-gradient(
            to bottom,
            #000 0%,
            #000 65%,
            rgba(0, 0, 0, 0.88) 76%,
            rgba(0, 0, 0, 0.45) 88%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to bottom,
            #000 0%,
            #000 65%,
            rgba(0, 0, 0, 0.88) 76%,
            rgba(0, 0, 0, 0.45) 88%,
            transparent 100%
        );
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }
}

/* Hero desktop layout lock: reduce reflow on browser zoom */
@media (min-width: 1024px) {
    .hero-content {
        min-height: 860px;
        padding-top: 6.5rem;
        padding-bottom: 0;
        display: grid;
        grid-template-columns: minmax(540px, 1fr) 520px;
        align-items: end;
        column-gap: 2.5rem;
    }

    .hero-copy {
        max-width: 640px;
        min-width: 0;
        padding-right: 0;
        align-self: center;
    }

    .hero-figure-wrap {
        width: 520px;
        max-width: 520px;
        justify-content: flex-end;
        align-self: end;
    }

    .hero-figure {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .hero-image {
        width: 520px;
        max-width: 520px;
        min-width: 520px;
    }
}

/* Widths for hero image */
.w-\[280px\] { width: 280px; }

@media (min-width: 640px) {
    .sm\:w-\[350px\] { width: 350px; }
}

@media (min-width: 768px) {
    .md\:w-\[420px\] { width: 420px; }
}

@media (min-width: 1024px) {
    .lg\:w-\[500px\] { width: 500px; }
}

@media (min-width: 1280px) {
    .xl\:w-\[550px\] { width: 550px; }
}

/* Seção Sobre: foto alinhada ao inferior do card e da linha (como na hero) */
.about-doctor-figure-wrap {
    min-width: 0;
}

.about-doctor-card {
    min-height: 0;
    box-sizing: border-box;
    /* Padding só em cima e nas laterais: a foto encosta no limite inferior do card */
    padding: 1rem 1rem 0;
    line-height: 0;
}

.about-doctor-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    /* evita “faixa” fantasma abaixo de <img> em alguns navegadores */
    margin-bottom: 0;
}

/* Course card background */
.\[\#1A2B3C\] { background-color: #1A2B3C; }
.bg-\[1A2B3C\] { background-color: #1A2B3C; }

/* Custom padding */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }

.tracking-\[0\.08em\] { letter-spacing: 0.08em; }

/* Max width for contact buttons */
.max-w-sm { max-width: 24rem; }

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

/* Cards de contatos: mobile em coluna, desktop maior e proporcional */
.contact-cards-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .contact-cards-grid {
        gap: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .contact-cards-grid {
        flex-direction: row;
        align-items: stretch;
        gap: 1rem;
    }
}

.contact-cards-grid .contact-card {
    box-sizing: border-box;
    width: 100%;
    max-width: 22rem;
    min-width: 0;
    padding: 0.875rem 1rem 0.95rem;
}

@media (min-width: 1024px) {
    .contact-cards-grid .contact-card {
        width: clamp(280px, 28vw, 340px);
        max-width: none;
        padding: 1.2rem 1.4rem 1.25rem;
    }
}

.contact-card-title {
    font-size: 0.78rem;
    line-height: 1.15;
}

.contact-card-note {
    font-size: 0.82rem;
    line-height: 1.25;
}

.contact-card-phone {
    margin-top: 0.45rem;
    font-size: 1.25rem;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .contact-card-title {
        font-size: 0.9rem;
    }

    .contact-card-phone {
        font-size: 1.9rem;
    }

    .contact-card-note {
        font-size: 0.95rem;
    }
}

/* Height for hero min-height */
@media (min-width: 768px) {
    .md\:min-h-\[calc\(100vh-5rem\)\] {
        min-height: calc(100vh - 5rem);
    }
}

/* Landing clínica: foco em agendamento via WhatsApp */
.clinic-page {
    background: #f6fbfd;
    color: var(--color-text-dark);
}

.clinic-container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.clinic-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem max(1rem, calc((100vw - 1180px) / 2));
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
    backdrop-filter: blur(16px);
}

.clinic-logo img {
    width: 118px;
    height: auto;
}

.clinic-nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-montserrat);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(26, 26, 46, 0.72);
}

.clinic-nav-links a:hover {
    color: var(--color-teal-dark);
}

.clinic-nav-cta,
.clinic-btn {
    border: 0;
    cursor: pointer;
    font-family: var(--font-montserrat);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.clinic-nav-cta {
    display: none;
    border-radius: 999px;
    padding: 0.8rem 1.1rem;
    background: var(--color-whatsapp-green);
    color: #fff;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.clinic-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 7rem 0 4rem;
    background: radial-gradient(circle at top right, rgba(0, 180, 216, 0.22), transparent 35%),
        linear-gradient(135deg, #071827 0%, #0d1b2a 52%, #12324a 100%);
}

.clinic-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.clinic-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.clinic-eyebrow {
    margin: 0 0 0.85rem;
    font-family: var(--font-montserrat);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-teal);
}

.clinic-hero h1,
.clinic-section h2,
.clinic-contact h2 {
    margin: 0;
    font-family: var(--font-montserrat);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.clinic-hero h1 {
    max-width: 760px;
    font-size: clamp(2.75rem, 8vw, 6.7rem);
    color: #fff;
}

.clinic-hero-lead {
    max-width: 650px;
    margin-top: 1.5rem;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    color: rgba(255, 255, 255, 0.82);
}

.clinic-cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 2rem;
}

.clinic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.3rem;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    font-size: 0.82rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.clinic-btn:hover {
    transform: translateY(-2px);
}

.clinic-btn-primary {
    background: var(--color-whatsapp-green);
    color: #fff;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.25);
}

.clinic-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.clinic-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    max-width: 680px;
    margin-top: 2rem;
}

.clinic-trust-row div {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.07);
}

.clinic-trust-row strong,
.clinic-trust-row span {
    display: block;
}

.clinic-trust-row strong {
    font-family: var(--font-montserrat);
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    color: #fff;
}

.clinic-trust-row span {
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.68);
}

.clinic-hero-card {
    display: grid;
    gap: 1rem;
}

.clinic-doctor-card,
.clinic-schedule-card,
.clinic-card,
.clinic-contact-card {
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 1.6rem;
    box-shadow: 0 24px 60px rgba(13, 27, 42, 0.12);
}

.clinic-doctor-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    background: linear-gradient(180deg, rgba(224, 247, 250, 0.2), rgba(255, 255, 255, 0.08));
}

.clinic-doctor-card img {
    width: min(440px, 100%);
    margin: 0 auto;
    object-fit: contain;
    object-position: bottom center;
}

.clinic-doctor-overlay {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.1rem;
    background: rgba(13, 27, 42, 0.72);
    color: #fff;
    backdrop-filter: blur(12px);
}

.clinic-doctor-overlay span,
.clinic-doctor-overlay strong {
    display: block;
}

.clinic-doctor-overlay span {
    color: rgba(255, 255, 255, 0.7);
}

.clinic-schedule-card {
    padding: 1.4rem;
    background: #fff;
}

.clinic-schedule-card p,
.clinic-schedule-card span {
    margin: 0;
    color: var(--color-text-body);
}

.clinic-schedule-card strong,
.clinic-contact-actions strong {
    display: block;
    margin: 0.25rem 0;
    font-family: var(--font-montserrat);
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    color: var(--color-teal-dark);
}

.clinic-whatsapp-mini {
    width: 100%;
    margin-top: 1rem;
    border: 0;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    background: #ecfff4;
    color: #128c45;
    cursor: pointer;
    font-weight: 800;
}

.clinic-strip {
    padding: 1rem 0;
    background: #fff;
    border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}

.clinic-strip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.clinic-strip span {
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    background: var(--color-teal-light);
    color: #075985;
    font-size: 0.86rem;
    font-weight: 800;
}

.clinic-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.clinic-two-cols {
    display: grid;
    gap: 2rem;
}

.clinic-section h2 {
    max-width: 780px;
    font-size: clamp(2.1rem, 5vw, 4rem);
    color: var(--color-text-dark);
}

.clinic-copy {
    font-size: 1.06rem;
    color: var(--color-text-body);
}

.clinic-copy p + p {
    margin-top: 1rem;
}

.clinic-care {
    background: #fff;
}

.clinic-section-heading {
    max-width: 850px;
    margin-bottom: 2rem;
}

.clinic-cards {
    display: grid;
    gap: 1rem;
}

.clinic-card {
    padding: 1.35rem;
    background: #f8fcfe;
}

.clinic-card span {
    display: inline-flex;
    width: 2.3rem;
    height: 2.3rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-teal);
    color: #fff;
    font-weight: 800;
}

.clinic-card h3,
.clinic-flow-step h3 {
    margin: 1rem 0 0.55rem;
    font-family: var(--font-montserrat);
    color: var(--color-text-dark);
}

.clinic-card p,
.clinic-flow-step p {
    margin: 0;
    color: var(--color-text-body);
}

.clinic-flow {
    background: linear-gradient(135deg, #0d1b2a, #12324a);
}

.clinic-section-heading-light h2 {
    color: #fff;
}

.clinic-flow-grid {
    display: grid;
    gap: 1rem;
}

.clinic-flow-step {
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.07);
}

.clinic-flow-step strong {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-teal);
    color: #fff;
}

.clinic-flow-step h3,
.clinic-flow-step p {
    color: #fff;
}

.clinic-flow-step p {
    color: rgba(255, 255, 255, 0.72);
}

.clinic-flow-cta {
    margin-top: 2rem;
}

.clinic-contact {
    background: #f6fbfd;
}

.clinic-contact-card {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: #fff;
}

.clinic-contact-card p {
    max-width: 560px;
}

.clinic-contact-actions {
    display: grid;
    gap: 1rem;
}

.clinic-footer {
    display: grid;
    justify-items: center;
    gap: 1rem;
    padding: 2.5rem 1rem;
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
}

.clinic-footer img {
    width: 140px;
}

.clinic-footer-credit {
    margin: -0.4rem 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.clinic-footer-credit a {
    color: #2dd4bf;
    font-weight: 800;
}

.clinic-footer-credit a:hover {
    color: #fff;
}

.clinic-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.clinic-modal.hidden {
    display: none;
}

.clinic-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 30, 0.76);
    backdrop-filter: blur(8px);
}

.clinic-modal-dialog {
    position: relative;
    width: min(560px, 100%);
    max-height: min(92vh, 780px);
    overflow: auto;
    padding: clamp(1.3rem, 4vw, 2rem);
    border-radius: 1.4rem;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.clinic-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2.3rem;
    height: 2.3rem;
    border: 0;
    border-radius: 999px;
    background: #eef6fa;
    color: var(--color-text-dark);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.clinic-modal-dialog h2 {
    max-width: 440px;
    margin: 0;
    font-family: var(--font-montserrat);
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    line-height: 1.08;
    color: var(--color-text-dark);
}

.clinic-modal-subtitle {
    margin: 0.85rem 0 1.2rem;
    color: var(--color-text-body);
}

.clinic-form {
    display: grid;
    gap: 0.85rem;
}

.clinic-form label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.clinic-form input,
.clinic-form select {
    min-height: 3rem;
    border: 1px solid rgba(13, 27, 42, 0.16);
    border-radius: 0.8rem;
    padding: 0 0.9rem;
    font: inherit;
    color: var(--color-text-dark);
    background: #fff;
}

.clinic-form input:focus,
.clinic-form select:focus {
    outline: 3px solid rgba(0, 180, 216, 0.16);
    border-color: var(--color-teal);
}

.clinic-form-feedback {
    min-height: 1.2rem;
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: #b45309;
}

.clinic-form-feedback.success {
    color: #128c45;
}

.clinic-submit-btn {
    width: 100%;
    margin-top: 0.2rem;
}

body.clinic-modal-open {
    overflow: hidden;
}

@media (min-width: 640px) {
    .clinic-cta-row {
        flex-direction: row;
    }

    .clinic-contact-card,
    .clinic-flow-grid,
    .clinic-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .clinic-nav-links,
    .clinic-nav-cta {
        display: flex;
    }

    .clinic-hero-grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    }

    .clinic-two-cols {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .clinic-contact-card {
        grid-template-columns: 1fr auto;
    }
}

@media (max-width: 639px) {
    .clinic-trust-row {
        grid-template-columns: 1fr;
    }

    .clinic-contact-card,
    .clinic-flow-grid,
    .clinic-cards {
        grid-template-columns: 1fr;
    }
}

/* UX refactor — clínica: hierarquia, responsividade e conversão */
.clinic-page {
    --clinic-navy: #081827;
    --clinic-navy-2: #0e2a3d;
    --clinic-teal: #00a6c8;
    --clinic-green: #20c463;
    --clinic-ink: #102033;
    --clinic-muted: #5d6b7c;
    --clinic-line: rgba(16, 32, 51, 0.1);
    background:
        radial-gradient(circle at 12% 8%, rgba(0, 180, 216, 0.08), transparent 28%),
        #f5fafc;
}

.clinic-nav {
    min-height: 68px;
    padding: 0.5rem max(1rem, calc((100vw - 1180px) / 2));
    box-shadow: 0 10px 30px rgba(8, 24, 39, 0.06);
}

.clinic-logo img {
    width: clamp(90px, 14vw, 112px);
}

.clinic-nav-links {
    gap: clamp(1rem, 2vw, 1.8rem);
}

.clinic-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    white-space: nowrap;
}

.clinic-hero {
    min-height: auto;
    padding: clamp(7.4rem, 13vw, 10rem) 0 clamp(3rem, 7vw, 5rem);
}

.clinic-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(245, 250, 252, 0.96));
    pointer-events: none;
}

.clinic-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
}

.clinic-eyebrow {
    color: #2dd4bf;
    line-height: 1.35;
}

.clinic-hero h1 {
    max-width: 820px;
    font-size: clamp(2.45rem, 7vw, 5.9rem);
    line-height: 0.96;
    text-wrap: balance;
}

.clinic-hero-lead {
    max-width: 690px;
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.65;
}

.clinic-cta-row {
    align-items: stretch;
}

.clinic-btn {
    min-height: 3.45rem;
    padding: 1rem 1.35rem;
    text-align: center;
    line-height: 1.2;
}

.clinic-btn-primary,
.clinic-nav-cta {
    background: linear-gradient(135deg, #25d366, #128c45);
}

.clinic-btn-primary:hover,
.clinic-nav-cta:hover,
.clinic-whatsapp-mini:hover {
    box-shadow: 0 20px 42px rgba(37, 211, 102, 0.32);
}

.clinic-cta-note {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.clinic-cta-note strong {
    color: #fff;
    white-space: nowrap;
}

.clinic-trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clinic-trust-row div {
    min-height: 104px;
    display: grid;
    align-content: center;
}

.clinic-hero-card {
    max-width: 430px;
    margin: 0 auto;
}

.clinic-doctor-card {
    min-height: clamp(340px, 52vw, 520px);
    background:
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.22), transparent 42%),
        linear-gradient(180deg, rgba(224, 247, 250, 0.18), rgba(255, 255, 255, 0.05));
}

.clinic-doctor-card img {
    width: min(460px, 105%);
    transform: translateY(8px);
}

.clinic-schedule-card {
    position: relative;
    overflow: hidden;
}

.clinic-schedule-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--clinic-green);
}

.clinic-whatsapp-mini {
    min-height: 48px;
}

.clinic-strip {
    position: relative;
    z-index: 2;
    padding: 1.15rem 0;
}

.clinic-strip-grid {
    justify-content: flex-start;
}

.clinic-section {
    padding: clamp(3.8rem, 7vw, 6.5rem) 0;
}

.clinic-section h2,
.clinic-contact h2 {
    color: var(--clinic-ink);
    text-wrap: balance;
}

.clinic-copy {
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.78;
}

.clinic-care {
    background:
        linear-gradient(180deg, #fff, #f7fbfd);
}

.clinic-cards,
.clinic-flow-grid {
    gap: clamp(1rem, 2vw, 1.35rem);
}

.clinic-card,
.clinic-flow-step {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.clinic-card:hover,
.clinic-flow-step:hover {
    transform: translateY(-4px);
}

.clinic-card {
    min-height: 238px;
    padding: clamp(1.25rem, 2vw, 1.75rem);
    background: #fff;
}

.clinic-card:hover {
    border-color: rgba(0, 166, 200, 0.22);
    box-shadow: 0 28px 70px rgba(16, 32, 51, 0.11);
}

.clinic-card h3,
.clinic-flow-step h3 {
    line-height: 1.2;
}

.clinic-flow {
    position: relative;
    overflow: hidden;
}

.clinic-flow::before {
    content: "";
    position: absolute;
    inset: -20% auto auto 55%;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    background: rgba(0, 180, 216, 0.12);
    filter: blur(6px);
}

.clinic-flow .clinic-container {
    position: relative;
    z-index: 1;
}

.clinic-flow .clinic-section-heading h2 {
    color: #fff;
}

.clinic-flow .clinic-eyebrow {
    color: #5eead4;
}

.clinic-flow-step {
    min-height: 220px;
}

.clinic-flow-cta {
    display: flex;
    justify-content: center;
}

.clinic-contact-card {
    border: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 249, 252, 0.96)),
        #fff;
}

.clinic-contact-card h2 {
    letter-spacing: -0.02em;
}

.clinic-contact-actions {
    min-width: min(100%, 330px);
}

.clinic-footer {
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
}

.clinic-mobile-sticky {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    left: 1rem;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #128c45);
    color: #fff;
    box-shadow: 0 18px 38px rgba(18, 140, 69, 0.34);
    cursor: pointer;
    font-family: var(--font-montserrat);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.clinic-modal-dialog {
    width: min(480px, 100%);
    max-height: calc(100dvh - 2rem);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.clinic-form {
    gap: 0.7rem;
}

.clinic-form input,
.clinic-form select {
    min-height: 2.9rem;
    font-size: 0.95rem;
}

.clinic-privacy-note {
    margin: 0;
    color: var(--clinic-muted);
    font-size: 0.8rem;
    text-align: center;
}

@media (min-width: 640px) {
    .clinic-cta-row {
        align-items: center;
    }

    .clinic-btn {
        width: auto;
    }

    .clinic-modal-dialog {
        padding: 1.65rem;
    }
}

@media (min-width: 768px) {
    .clinic-hero-grid {
        grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    }

    .clinic-nav-links {
        display: flex;
    }

    .clinic-mobile-sticky {
        display: none;
    }

    .clinic-strip-grid {
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .clinic-hero-grid {
        align-items: center;
    }

    .clinic-hero-card {
        justify-self: end;
        margin: 0;
    }

    .clinic-two-cols {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: start;
    }
}

@media (max-width: 767px) {
    .clinic-page {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .clinic-nav {
        min-height: 64px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .clinic-nav-links {
        display: none;
    }

    .clinic-nav-cta {
        display: none;
    }

    .clinic-hero {
        padding-top: 5.75rem;
        padding-bottom: 2.2rem;
    }

    .clinic-hero h1 {
        font-size: clamp(2.05rem, 10vw, 3.1rem);
        line-height: 1;
    }

    .clinic-hero-lead {
        margin-top: 1.15rem;
    }

    .clinic-cta-row .clinic-btn {
        width: 100%;
    }

    .clinic-trust-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .clinic-trust-row div {
        min-height: 92px;
        padding: 0.75rem 0.65rem;
    }

    .clinic-trust-row strong {
        font-size: 1.15rem;
    }

    .clinic-trust-row span {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .clinic-doctor-card {
        display: none;
    }

    .clinic-hero-card {
        max-width: none;
        margin-top: 0.5rem;
    }

    .clinic-schedule-card {
        border-radius: 1.15rem;
        padding: 1rem 1rem 1rem 1.2rem;
        box-shadow: 0 14px 38px rgba(13, 27, 42, 0.14);
    }

    .clinic-schedule-card strong {
        font-size: 1.55rem;
    }

    .clinic-whatsapp-mini {
        min-height: 44px;
        margin-top: 0.8rem;
    }

    .clinic-section-heading {
        margin-bottom: 1.35rem;
    }

    .clinic-section h2 {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
        line-height: 1.05;
    }

    .clinic-card,
    .clinic-flow-step {
        min-height: auto;
    }

    .clinic-contact-actions strong {
        font-size: 2rem;
    }
}

@media (max-width: 420px) {
    .clinic-container {
        width: min(100% - 1.25rem, 1180px);
    }

    .clinic-logo img {
        width: 92px;
    }

    .clinic-trust-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .clinic-trust-row div {
        min-height: 86px;
    }

    .clinic-modal {
        align-items: end;
        padding: 0;
    }

    .clinic-modal-dialog {
        width: 100%;
        max-height: 78dvh;
        padding: 0.85rem 0.9rem calc(0.85rem + env(safe-area-inset-bottom));
        border-radius: 1.1rem 1.1rem 0 0;
    }
}

/* Modal WhatsApp: compacto para conversão */
.clinic-modal-eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
}

.clinic-modal-dialog h2 {
    max-width: 360px;
    font-size: clamp(1.45rem, 4vw, 1.95rem);
    line-height: 1.08;
}

.clinic-modal-subtitle {
    margin: 0.55rem 0 0.9rem;
    font-size: 0.94rem;
    line-height: 1.45;
}

.clinic-form label.clinic-field {
    gap: 0.25rem;
    font-size: 0.8rem;
}

.clinic-form-feedback {
    min-height: 1rem;
    font-size: 0.82rem;
}

.clinic-submit-btn {
    min-height: 3rem;
}

@media (max-width: 420px) {
    .clinic-modal-close {
        top: 0.65rem;
        right: 0.65rem;
        width: 2rem;
        height: 2rem;
        font-size: 1.3rem;
    }

    .clinic-modal-dialog h2 {
        padding-right: 2.2rem;
        font-size: 1.28rem;
    }

    .clinic-modal-subtitle {
        margin: 0.35rem 0 0.65rem;
        font-size: 0.78rem;
    }

    .clinic-modal-eyebrow {
        margin-bottom: 0.25rem;
        font-size: 0.62rem;
    }

    .clinic-form {
        gap: 0.5rem;
    }

    .clinic-form label.clinic-field {
        gap: 0.18rem;
        font-size: 0.74rem;
    }

    .clinic-form input,
    .clinic-form select {
        min-height: 2.48rem;
        border-radius: 0.65rem;
        font-size: 0.9rem;
    }

    .clinic-submit-btn {
        min-height: 2.65rem;
        margin-top: 0;
    }

    .clinic-form-feedback {
        min-height: 0.75rem;
        font-size: 0.74rem;
    }

    .clinic-privacy-note {
        display: none;
        font-size: 0.72rem;
    }
}

/* Correções finais de responsivo e contraste do topo */
.clinic-logo img {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(12%) sepia(21%) saturate(1211%) hue-rotate(169deg) brightness(91%) contrast(94%);
}

.clinic-hero h1 {
    max-width: 760px;
    font-size: clamp(2.2rem, 4.45vw, 4.45rem);
    line-height: 1.04;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .clinic-container {
        width: min(100% - 3rem, 1060px);
    }

    .clinic-nav {
        min-height: 72px;
    }

    .clinic-logo img {
        width: 104px;
    }

    .clinic-nav-links {
        gap: 1rem;
        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }

    .clinic-nav-cta {
        min-height: 40px;
        padding: 0.72rem 1rem;
        font-size: 0.72rem;
    }

    .clinic-hero {
        padding-top: 6.7rem;
        padding-bottom: 3rem;
    }

    .clinic-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
        gap: 2rem;
        align-items: start;
    }

    .clinic-hero h1 {
        max-width: 540px;
        font-size: clamp(2.55rem, 4.05vw, 3.18rem);
        line-height: 1.06;
        letter-spacing: -0.045em;
    }

    .clinic-hero-lead {
        max-width: 540px;
        font-size: 1rem;
        line-height: 1.6;
    }

    .clinic-hero-card {
        max-width: 340px;
    }

    .clinic-doctor-card {
        min-height: 360px;
    }

    .clinic-doctor-card img {
        width: min(350px, 102%);
    }

    .clinic-schedule-card {
        padding: 1.1rem 1.1rem 1.15rem;
        border-radius: 1.2rem;
    }

    .clinic-schedule-card strong {
        font-size: 1.75rem;
    }

    .clinic-trust-row {
        max-width: 560px;
    }
}

@media (min-width: 1200px) {
    .clinic-hero h1 {
        max-width: 720px;
        font-size: clamp(3.7rem, 4.35vw, 4.75rem);
    }
}
