:root {
    --blue: #173f68;
    --blue-dark: #0d2f50;
    --blue-deep: #08253f;
    --cyan: #25c7c7;
    --cyan-dark: #18aeaf;
    --cyan-light: #dff8f7;

    --text: #263746;
    --text-soft: #687988;

    --white: #ffffff;
    --background: #f5f8fb;
    --line: #e5edf3;

    --shadow:
        0 24px 65px rgba(15, 51, 82, .12);

    --radius: 24px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}


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


button,
a {
    -webkit-tap-highlight-color: transparent;
}


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



/* TOPBAR */

.topbar {
    background: var(--blue-deep);
    color: rgba(255,255,255,.82);
    font-size: 13px;
}


.topbar-inner {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 28px;
}


.topbar a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .2s;
}


.topbar a:hover {
    color: var(--cyan);
}



/* NAVBAR */

.navbar {
    height: 86px;
    background: rgba(255,255,255,.96);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(17,59,97,.07);
}


.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}


.brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan-dark)
        );
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 21px;
    box-shadow:
        0 10px 25px rgba(33,190,191,.22);
}


.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}


.brand-copy strong {
    color: var(--blue-dark);
    font-size: 16px;
}


.brand-copy small {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}


.nav-menu > a:not(.btn) {
    color: #536675;
    font-size: 14px;
    font-weight: 600;
    transition: .2s;
}


.nav-menu > a:not(.btn):hover {
    color: var(--cyan-dark);
}


.menu-toggle {
    display: none;
}



/* BUTTONS */

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 13px;
    font-weight: 700;
    font-size: 14px;
    padding: 0 24px;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


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


.btn-primary,
.btn-nav {
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--cyan-dark),
            var(--cyan)
        );
    box-shadow:
        0 15px 35px rgba(37,199,199,.25);
}


.btn-nav {
    min-height: 44px;
    padding: 0 20px;
}


.btn-secondary {
    border: 1px solid rgba(255,255,255,.25);
    color: white;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}


.btn-white {
    background: white;
    color: var(--blue);
    white-space: nowrap;
}



/* HERO */

.hero {
    background:
        radial-gradient(
            circle at 74% 50%,
            rgba(38,199,199,.18),
            transparent 27%
        ),
        linear-gradient(
            130deg,
            #0b2b49 0%,
            #173f68 56%,
            #225880 100%
        );

    position: relative;
    min-height: 670px;
    color: white;
    overflow: hidden;
}


.hero-grid {
    min-height: 670px;
    display: grid;
    grid-template-columns:
        minmax(0, .97fr)
        minmax(450px, 1.03fr);
    align-items: center;
    position: relative;
    z-index: 3;
}


.hero-content {
    padding: 75px 0 110px;
    position: relative;
    z-index: 5;
}


.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: 700;
    color: #94e7e6;
    margin-bottom: 25px;
}


.eyebrow span {
    width: 28px;
    height: 2px;
    background: var(--cyan);
}


.hero h1 {
    max-width: 650px;
    font-size: clamp(46px, 5vw, 72px);
    letter-spacing: -.055em;
    line-height: 1.03;
    font-weight: 800;
}


.hero h1 em {
    display: block;
    font-style: normal;
    color: var(--cyan);
}


.hero-description {
    max-width: 565px;
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,.75);
}


.hero-actions {
    display: flex;
    gap: 13px;
    margin-top: 34px;
}


.hero-trust {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 16px;
}


.trust-stars {
    color: #ffd36a;
    letter-spacing: 3px;
    font-size: 14px;
}


.hero-trust > div:last-child {
    display: flex;
    flex-direction: column;
}


.hero-trust strong {
    font-size: 13px;
}


.hero-trust span {
    color: rgba(255,255,255,.55);
    font-size: 11px;
    margin-top: 2px;
}



/* HERO DOCTOR */

.hero-visual {
    height: 100%;
    position: relative;
    min-height: 600px;
}


.doctor-backdrop {
    position: absolute;
    width: 500px;
    height: 500px;
    right: 10px;
    top: 80px;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(44,205,203,.24),
            rgba(255,255,255,.08)
        );
    border: 1px solid rgba(255,255,255,.12);
}


.doctor-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(69,221,219,.17);
}


.ring-one {
    width: 570px;
    height: 570px;
    right: -25px;
    top: 45px;
}


.ring-two {
    width: 650px;
    height: 650px;
    right: -68px;
    top: 4px;
}


.doctor-image {
    position: absolute;
    right: -5px;
    bottom: 0;
    height: 625px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
    z-index: 3;
    filter:
        drop-shadow(
            0 25px 35px rgba(1,21,39,.3)
        );
}


.experience-card,
.appointment-card {
    position: absolute;
    z-index: 5;
    background: rgba(255,255,255,.95);
    color: var(--text);
    border-radius: 17px;
    box-shadow:
        0 18px 40px rgba(3,28,50,.18);
    backdrop-filter: blur(15px);
}


.experience-card {
    left: 10px;
    top: 190px;
    padding: 14px 18px 14px 14px;
    display: flex;
    gap: 12px;
    align-items: center;
}


.experience-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: white;
    background: var(--cyan-dark);
}


.experience-card div:last-child,
.appointment-card div:last-child {
    display: flex;
    flex-direction: column;
}


.experience-card strong,
.appointment-card strong {
    font-size: 12px;
    color: var(--blue-dark);
}


.experience-card span {
    font-size: 10px;
    color: var(--text-soft);
}


.appointment-card {
    right: 0;
    bottom: 130px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 11px;
}


.appointment-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #42ce84;
    box-shadow:
        0 0 0 5px rgba(66,206,132,.13);
}


.appointment-card small {
    color: var(--text-soft);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
}


.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: .55;
}


.hero-orb-one {
    width: 250px;
    height: 250px;
    background: rgba(33,197,199,.12);
    left: -90px;
    top: 90px;
}


.hero-orb-two {
    width: 340px;
    height: 340px;
    background: rgba(15,42,72,.35);
    right: -100px;
    bottom: -150px;
}


.hero-wave {
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 65px;
    background: white;
    clip-path:
        ellipse(
            63% 72% at 50% 100%
        );
}



/* TRUST */

.trust-strip {
    background: white;
    padding: 12px 0 40px;
}


.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}


.trust-grid article {
    padding: 22px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-right: 1px solid var(--line);
}


.trust-grid article:last-child {
    border-right: 0;
}


.trust-icon {
    flex: 0 0 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--cyan-light);
    color: var(--cyan-dark);
    display: grid;
    place-items: center;
    font-weight: 800;
}


.trust-grid article div:last-child {
    display: flex;
    flex-direction: column;
}


.trust-grid strong {
    font-size: 12px;
    color: var(--blue-dark);
}


.trust-grid span {
    font-size: 10px;
    color: #8795a0;
    margin-top: 2px;
}



/* SECTIONS */

.section {
    padding: 100px 0;
}


.treatments {
    background: var(--background);
}


.section-heading {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 48px;
}


.section-label {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--cyan-dark);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 10px;
    font-weight: 800;
}


.section-label.light {
    color: #79dedc;
}


.section-heading h2,
.doctor-copy h2,
.reviews-header h2,
.contact-copy h2 {
    color: var(--blue-dark);
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.13;
    letter-spacing: -.045em;
}


.section-heading h2 span,
.doctor-copy h2 span,
.contact-copy h2 span {
    color: var(--cyan-dark);
}


.section-heading > p {
    color: var(--text-soft);
    max-width: 430px;
    font-size: 14px;
}



/* TREATMENTS */

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.treatment-card {
    position: relative;
    min-height: 310px;
    padding: 29px;
    background: white;
    border: 1px solid #e9f0f4;
    border-radius: var(--radius);
    transition:
        transform .25s,
        box-shadow .25s,
        border-color .25s;
    overflow: hidden;
}


.treatment-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: transparent;
}


.treatment-card.featured {
    background:
        linear-gradient(
            145deg,
            #11395e,
            #174e72
        );
    color: white;
    border-color: transparent;
}


.treatment-number {
    position: absolute;
    right: 21px;
    top: 16px;
    font-size: 38px;
    font-weight: 800;
    color: #eef3f6;
}


.featured .treatment-number {
    color: rgba(255,255,255,.07);
}


.treatment-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--cyan-light);
    color: var(--cyan-dark);
    font-size: 21px;
    margin-bottom: 34px;
}


.featured .treatment-icon {
    background: var(--cyan);
    color: var(--blue-deep);
}


.treatment-card h3 {
    color: var(--blue-dark);
    font-size: 18px;
    margin-bottom: 11px;
}


.featured h3 {
    color: white;
}


.treatment-card p {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 22px;
}


.featured p {
    color: rgba(255,255,255,.65);
}


.treatment-card a {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--cyan-dark);
    font-size: 12px;
    font-weight: 800;
}


.featured a {
    color: var(--cyan);
}



/* DOCTOR */

.doctor-section {
    padding: 110px 0;
    background: white;
}


.doctor-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}


.doctor-photo-area {
    position: relative;
    min-height: 540px;
}


.doctor-photo-bg {
    position: absolute;
    inset: 30px 0 0 0;
    border-radius: 46% 46% 30px 30px;
    background:
        linear-gradient(
            145deg,
            #dff8f7,
            #eaf2f8
        );
}


.doctor-photo-area img {
    position: absolute;
    max-height: 540px;
    width: 100%;
    object-fit: contain;
    object-position: bottom;
    bottom: 0;
    z-index: 2;
}


.doctor-badge {
    position: absolute;
    z-index: 3;
    right: -25px;
    bottom: 55px;
    background: white;
    border-radius: 17px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
}


.doctor-badge > span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--cyan-light);
    color: var(--cyan-dark);
    display: grid;
    place-items: center;
}


.doctor-badge div {
    display: flex;
    flex-direction: column;
}


.doctor-badge strong {
    color: var(--blue-dark);
    font-size: 12px;
}


.doctor-badge small {
    color: var(--text-soft);
    font-size: 10px;
}


.doctor-copy {
    max-width: 570px;
}


.doctor-copy > p {
    color: var(--text-soft);
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.85;
}


.doctor-points {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}


.doctor-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #435b6d;
}


.doctor-points span {
    width: 25px;
    height: 25px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--cyan-light);
    color: var(--cyan-dark);
    font-size: 11px;
}


.text-link {
    margin-top: 32px;
    display: inline-flex;
    gap: 18px;
    color: var(--cyan-dark);
    font-weight: 800;
    font-size: 13px;
}



/* REVIEWS */

.reviews-section {
    padding: 105px 0;
    background:
        linear-gradient(
            135deg,
            var(--blue-deep),
            #174a70
        );
    overflow: hidden;
}


.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 48px;
}


.reviews-header h2 {
    color: white;
}


.reviews-header h2 span {
    color: var(--cyan);
}


.google-summary {
    min-width: 270px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    padding: 13px 17px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}


.google-g {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    color: #4285f4;
    font-weight: 800;
    font-size: 20px;
}


.google-summary div:last-child {
    display: flex;
    flex-direction: column;
}


.google-summary strong {
    font-size: 12px;
}


.google-summary span {
    margin-top: 2px;
    color: rgba(255,255,255,.48);
    font-size: 9px;
}


.reviews-slider {
    position: relative;
}


.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform .45s ease;
}


.review-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-height: 280px;
    background: white;
    border-radius: 22px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}


.review-top {
    display: flex;
    justify-content: space-between;
}


.review-google {
    font-weight: 800;
    color: #4285f4;
}


.review-stars {
    color: #f6ba3d;
    letter-spacing: 2px;
    font-size: 12px;
}


.review-card > p {
    margin-top: 29px;
    color: #536675;
    font-size: 14px;
    line-height: 1.75;
    flex: 1;
}


.review-person {
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 11px;
}


.review-avatar {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cyan-light);
    color: var(--cyan-dark);
    font-weight: 800;
}


.review-person div:last-child {
    display: flex;
    flex-direction: column;
}


.review-person strong {
    color: var(--blue-dark);
    font-size: 11px;
}


.review-person span {
    color: #8b99a4;
    font-size: 9px;
}


.reviews-controls {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
    align-items: center;
}


.reviews-controls button {
    border: 1px solid rgba(255,255,255,.22);
    width: 39px;
    height: 39px;
    border-radius: 50%;
    color: white;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}


.review-dots {
    min-width: 25px;
}



/* CTA */

.cta-section {
    background: white;
    padding: 80px 0;
}


.cta-box {
    min-height: 230px;
    border-radius: 30px;
    padding: 55px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: white;
    background:
        linear-gradient(
            125deg,
            #1fc3c3,
            #168ea4
        );
}


.cta-box > div:not(.cta-decoration) {
    position: relative;
    z-index: 2;
}


.cta-box span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.72);
}


.cta-box h2 {
    margin-top: 9px;
    max-width: 610px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -.04em;
}


.cta-box .btn {
    position: relative;
    z-index: 2;
}


.cta-decoration {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 70px solid rgba(255,255,255,.08);
    border-radius: 50%;
    right: 150px;
    top: -180px;
}



/* CONTACT */

.contact-section {
    padding: 90px 0 110px;
    background: var(--background);
}


.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: center;
}


.contact-copy p {
    margin-top: 20px;
    color: var(--text-soft);
    max-width: 440px;
    font-size: 14px;
}


.contact-cards {
    display: grid;
    gap: 12px;
}


.contact-card {
    min-height: 83px;
    padding: 16px 19px;
    border-radius: 18px;
    border: 1px solid #e5edf3;
    background: white;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: .2s;
}


a.contact-card:hover {
    border-color: #b9e6e5;
    transform: translateX(4px);
}


.contact-card-icon {
    flex: 0 0 45px;
    height: 45px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--cyan-light);
    color: var(--cyan-dark);
}


.contact-card div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}


.contact-card small {
    font-size: 9px;
    color: #8a99a4;
    text-transform: uppercase;
    letter-spacing: .1em;
}


.contact-card strong {
    color: var(--blue-dark);
    font-size: 13px;
    overflow-wrap: anywhere;
}


.contact-arrow {
    margin-left: auto;
    color: var(--cyan-dark);
}



/* FOOTER */

.footer {
    background: #08253f;
    color: white;
    padding: 70px 0 25px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr .65fr .9fr;
    gap: 70px;
}


.footer-brand .brand-copy strong {
    color: white;
}


.footer-brand .brand-copy small {
    color: rgba(255,255,255,.45);
}


.footer-grid > div:first-child > p {
    margin-top: 20px;
    color: rgba(255,255,255,.46);
    max-width: 330px;
    font-size: 12px;
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


.footer-links strong {
    margin-bottom: 8px;
    font-size: 12px;
}


.footer-links a {
    color: rgba(255,255,255,.48);
    font-size: 11px;
}


.footer-links a:hover {
    color: var(--cyan);
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 55px;
    padding-top: 22px;
    font-size: 10px;
    color: rgba(255,255,255,.35);
}



/* WHATSAPP */

.floating-whatsapp {
    position: fixed;
    z-index: 150;
    right: 24px;
    bottom: 24px;
    min-height: 55px;
    padding: 8px 18px 8px 10px;
    border-radius: 50px;
    background: #20c86c;
    color: white;
    box-shadow:
        0 15px 35px rgba(20,148,78,.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .2s;
}


.floating-whatsapp:hover {
    transform: translateY(-3px);
}


.floating-whatsapp > span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.15);
}


.floating-whatsapp div {
    display: flex;
    flex-direction: column;
}


.floating-whatsapp small {
    font-size: 8px;
    opacity: .75;
}


.floating-whatsapp strong {
    font-size: 11px;
}



/* RESPONSIVE */

@media (max-width: 1024px) {

    .nav-menu {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .doctor-image {
        right: -90px;
    }

    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doctor-grid {
        gap: 50px;
    }

}


@media (max-width: 820px) {

    .container {
        width: min(100% - 34px, 680px);
    }

    .topbar {
        display: none;
    }

    .navbar {
        height: 72px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        border: 0;
        background: #f4f7f9;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 0 11px;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        background: var(--blue);
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        padding: 23px;
        flex-direction: column;
        align-items: stretch;
        background: white;
        border-top: 1px solid var(--line);
        box-shadow:
            0 18px 35px rgba(13,47,80,.12);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .btn {
        width: 100%;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        padding: 65px 0 20px;
    }

    .hero h1 {
        font-size: clamp(43px, 12vw, 64px);
    }

    .hero-visual {
        width: 100%;
        min-height: 510px;
    }

    .doctor-backdrop {
        width: 390px;
        height: 390px;
        right: 50%;
        transform: translateX(50%);
        top: 55px;
    }

    .doctor-image {
        height: 500px;
        right: 50%;
        transform: translateX(50%);
    }

    .ring-one,
    .ring-two {
        display: none;
    }

    .experience-card {
        left: 0;
        top: 120px;
    }

    .appointment-card {
        right: 0;
        bottom: 90px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid article:nth-child(2) {
        border-right: 0;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .doctor-grid {
        grid-template-columns: 1fr;
    }

    .doctor-copy {
        max-width: none;
    }

    .doctor-photo-area {
        width: min(100%, 500px);
        margin: 0 auto;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-card {
        flex-basis:
            calc((100% - 20px) / 2);
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

}


@media (max-width: 560px) {

    .container {
        width: calc(100% - 30px);
    }

    .brand-icon {
        width: 42px;
        height: 42px;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .hero-content {
        padding-top: 55px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .doctor-image {
        height: 425px;
    }

    .doctor-backdrop {
        width: 330px;
        height: 330px;
    }

    .experience-card {
        top: 105px;
        transform: scale(.88);
        transform-origin: left;
    }

    .appointment-card {
        transform: scale(.88);
        transform-origin: right;
        bottom: 55px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-grid article:last-child {
        border-bottom: 0;
    }

    .treatment-grid {
        grid-template-columns: 1fr;
    }

    .doctor-section {
        padding: 75px 0;
    }

    .doctor-photo-area {
        min-height: 420px;
    }

    .doctor-photo-area img {
        max-height: 420px;
    }

    .doctor-badge {
        right: 0;
    }

    .review-card {
        flex-basis: 100%;
    }

    .google-summary {
        width: 100%;
        min-width: 0;
    }

    .cta-section {
        padding: 55px 0;
    }

    .cta-box {
        padding: 35px 25px;
        border-radius: 24px;
    }

    .cta-box .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;
        padding: 8px;
        right: 15px;
        bottom: 15px;
    }

    .floating-whatsapp > span {
        width: 39px;
        height: 39px;
    }

    .floating-whatsapp div {
        display: none;
    }

}


/* =========================================================
   DR DANIEL GODOY - LANDING POLISH V1.1
   ========================================================= */


/* BRAND */

.brand-symbol {
    position: relative;
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            145deg,
            var(--blue-dark),
            var(--blue)
        );
    color: white;
    box-shadow:
        0 10px 28px rgba(15, 53, 86, .18);
}

.brand-d {
    font-size: 21px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.08em;
}

.brand-cross {
    position: absolute;
    right: 7px;
    top: 5px;
    font-size: 11px;
    font-weight: 800;
    color: var(--cyan);
}


/* HEADER */

.navbar {
    box-shadow:
        0 7px 24px rgba(14, 47, 79, .035);
}

.nav-menu > a:not(.btn) {
    position: relative;
}

.nav-menu > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    border-radius: 20px;
    background: var(--cyan);
    transition: width .2s ease;
}

.nav-menu > a:not(.btn):hover::after {
    width: 100%;
}


/* HERO */

.hero {
    min-height: 720px;
    background:
        radial-gradient(
            circle at 76% 43%,
            rgba(37,199,199,.22),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 73%,
            rgba(80,213,213,.10),
            transparent 25%
        ),
        linear-gradient(
            128deg,
            #082a48 0%,
            #123e66 55%,
            #1b5379 100%
        );
}

.hero-grid {
    min-height: 720px;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(500px, 1.06fr);
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(50px, 5.1vw, 74px);
}

.hero h1 em {
    max-width: 700px;
}

.hero-description {
    max-width: 620px;
}

.hero-visual {
    min-height: 650px;
}

.doctor-image {
    height: 675px;
    right: -30px;
}

.doctor-backdrop {
    width: 535px;
    height: 535px;
    right: -15px;
    top: 78px;
    background:
        radial-gradient(
            circle at 40% 35%,
            rgba(255,255,255,.16),
            rgba(38,199,199,.14) 52%,
            rgba(255,255,255,.035) 100%
        );
}

.ring-one {
    width: 600px;
    height: 600px;
    right: -50px;
    top: 45px;
}

.ring-two {
    width: 685px;
    height: 685px;
    right: -94px;
    top: 2px;
}

.experience-card {
    left: 20px;
    top: 225px;
    max-width: 245px;
}

.appointment-card {
    right: 5px;
    bottom: 138px;
}

.hero-wave {
    height: 72px;
}


/* TRUST */

.trust-strip {
    position: relative;
    z-index: 10;
    padding: 0 0 42px;
}

.trust-grid {
    margin-top: -7px;
    background: white;
    border-radius: 18px;
    box-shadow:
        0 20px 50px rgba(12, 48, 79, .06);
    border: 1px solid #edf3f7;
    overflow: hidden;
}

.trust-grid article {
    min-height: 94px;
}


/* SECTIONS */

.section-heading {
    margin-bottom: 52px;
}

.section-label {
    position: relative;
    padding-left: 34px;
}

.section-label::before {
    content: "";
    position: absolute;
    width: 23px;
    height: 2px;
    background: var(--cyan);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-label.light::before {
    background: #79dedc;
}


/* TREATMENTS */

.treatments {
    background:
        linear-gradient(
            180deg,
            #f7fafc 0%,
            #f4f8fb 100%
        );
}

.treatment-card {
    padding: 31px;
    min-height: 325px;
}

.treatment-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--cyan),
            transparent
        );
    opacity: 0;
    transition: opacity .25s ease;
}

.treatment-card:hover::after {
    opacity: 1;
}

.treatment-card.featured::after {
    opacity: 1;
}

.treatment-icon {
    box-shadow:
        inset 0 0 0 1px rgba(30,174,175,.08);
}


/* DOCTOR */

.doctor-section {
    position: relative;
    overflow: hidden;
}

.doctor-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(37,199,199,.045);
    right: -160px;
    top: -120px;
}

.doctor-photo-bg {
    background:
        radial-gradient(
            circle at 40% 25%,
            #f2ffff,
            #dff5f5 45%,
            #eaf1f6 100%
        );
}

.doctor-photo-area::after {
    content: "";
    position: absolute;
    inset: 49px 20px 18px 20px;
    border-radius: 42% 42% 28px 28px;
    border: 1px solid rgba(24,174,175,.14);
    z-index: 1;
}

.doctor-photo-area img {
    z-index: 2;
}


/* REVIEWS */

.reviews-section {
    position: relative;
}

.reviews-section::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    border: 90px solid rgba(255,255,255,.022);
    right: -190px;
    top: -190px;
}

.review-card {
    box-shadow:
        0 24px 60px rgba(4, 27, 47, .16);
}

.google-summary {
    backdrop-filter: blur(18px);
}


/* CTA */

.cta-box {
    box-shadow:
        0 25px 70px rgba(27, 178, 181, .18);
}


/* CONTACT */

.contact-card {
    box-shadow:
        0 12px 30px rgba(15, 48, 79, .035);
}


/* FOOTER */

.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    width: 330px;
    height: 330px;
    position: absolute;
    border: 65px solid rgba(39,199,199,.035);
    border-radius: 50%;
    right: -130px;
    top: -130px;
}


/* RESPONSIVE POLISH */

@media (max-width: 1024px) {

    .hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(420px, 1fr);
    }

    .doctor-image {
        height: 620px;
        right: -95px;
    }

}


@media (max-width: 820px) {

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
    }

    .doctor-image {
        right: 50%;
        height: 520px;
    }

    .hero-visual {
        min-height: 525px;
    }

}


@media (max-width: 560px) {

    .brand-symbol {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .hero h1 {
        font-size: clamp(41px, 12vw, 57px);
    }

    .hero-description {
        font-size: 14px;
    }

    .doctor-image {
        height: 445px;
    }

}


/* =========================================================
   DG_HEADER_SIGNATURE_V1
   Firma Dr. Daniel Godoy en navegación
   ========================================================= */

.header-signature-wrap {
    display: flex;
    align-items: center;
    height: 58px;
}

.header-signature {
    display: block;
    width: auto;
    height: 54px;
    max-width: 240px;
    object-fit: contain;
    object-position: left center;
}

.nav-inner > .brand {
    min-width: 220px;
}

@media (max-width: 1024px) {

    .header-signature {
        height: 49px;
        max-width: 205px;
    }

    .nav-inner > .brand {
        min-width: 185px;
    }

}

@media (max-width: 820px) {

    .header-signature-wrap {
        height: 50px;
    }

    .header-signature {
        height: 45px;
        max-width: 185px;
    }

    .nav-inner > .brand {
        min-width: 0;
    }

}

@media (max-width: 420px) {

    .header-signature {
        height: 41px;
        max-width: 165px;
    }

}


/* =========================================================
   DG_MDL_FOOTER_V1
   Crédito MediaDevLab
   ========================================================= */

.footer-mdl-separator {
    display: inline-block;
    margin: 0 9px;
    color: rgba(255, 255, 255, .30);
}

.footer-mdl-link {
    color: inherit;
    text-decoration: none;
    transition:
        color .2s ease,
        opacity .2s ease;
}

.footer-mdl-link:hover {
    color: var(--cyan);
}

@media (max-width: 560px) {

    .footer-mdl-separator {
        margin: 0 5px;
    }

    .footer-mdl-link {
        white-space: normal;
    }

}


/* =========================================================
   DG_SIGNATURE_FIX_V2
   Header compacto + firma blanca footer
   ========================================================= */


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.navbar {
    height: 82px !important;
    min-height: 82px !important;
    overflow: visible;
}

.nav-inner {
    height: 82px;
}

.nav-inner > .brand {
    display: flex;
    align-items: center;
    width: auto;
    min-width: 205px;
    height: 82px;
    overflow: hidden;
}

.header-signature-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 205px;
    height: 70px;

    overflow: hidden;
}

.header-signature {
    display: block !important;

    width: 195px !important;
    max-width: 195px !important;

    height: 62px !important;
    max-height: 62px !important;

    object-fit: contain !important;
    object-position: left center !important;

    margin: 0 !important;
    padding: 0 !important;
}


/*
 * Evita que dimensiones intrínsecas del PNG
 * puedan agrandar el header.
 */
.header-signature-wrap img {
    position: static !important;
    inset: auto !important;
}


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.footer-signature-wrap {
    display: flex;
    align-items: center;

    width: 220px;
    height: 75px;

    overflow: hidden;
}

.footer-signature {
    display: block;

    width: 210px;
    max-width: 210px;

    height: 68px;
    max-height: 68px;

    object-fit: contain;
    object-position: left center;

    /*
     * Convierte una firma negra/transparente
     * completamente a blanco.
     */
    filter:
        brightness(0)
        invert(1);

    opacity: .96;
}


/* Crédito inferior */

.footer-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 5px;
}

.footer-mdl-link {
    font-weight: 600;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1024px) {

    .nav-inner > .brand {
        min-width: 180px;
    }

    .header-signature-wrap {
        width: 180px;
    }

    .header-signature {
        width: 170px !important;
        max-width: 170px !important;

        height: 56px !important;
        max-height: 56px !important;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 820px) {

    .navbar,
    .nav-inner {
        height: 72px !important;
        min-height: 72px !important;
    }

    .nav-inner > .brand {
        height: 72px;
        min-width: 0;
    }

    .header-signature-wrap {
        width: 165px;
        height: 60px;
    }

    .header-signature {
        width: 158px !important;
        max-width: 158px !important;

        height: 52px !important;
        max-height: 52px !important;
    }

}


@media (max-width: 430px) {

    .header-signature-wrap {
        width: 145px;
    }

    .header-signature {
        width: 140px !important;
        max-width: 140px !important;

        height: 48px !important;
        max-height: 48px !important;
    }

    .footer-signature-wrap {
        width: 190px;
    }

    .footer-signature {
        width: 185px;
        max-width: 185px;
    }

}


/* =========================================================
   DG_DOCTOR_SECTION_CLEAN_V2
   Foto clínica sin arco/fondo decorativo
   ========================================================= */

.doctor-photo-clean {
    position: relative;
    min-height: 560px;
}

.doctor-photo-clean .doctor-photo-frame {
    position: relative;
    width: 100%;
    height: 560px;
    border-radius: 28px;
    overflow: hidden;
    background: #f2f6f8;
    box-shadow:
        0 24px 60px rgba(15, 48, 79, .10);
}

.doctor-photo-clean .doctor-about-image {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    max-height: none !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;

    z-index: 1 !important;
}

.doctor-photo-clean::after,
.doctor-photo-clean .doctor-photo-bg {
    display: none !important;
}

.doctor-photo-clean .doctor-badge {
    right: -22px;
    bottom: 40px;
    z-index: 4;
}


/* TABLET */

@media (max-width: 820px) {

    .doctor-photo-clean,
    .doctor-photo-clean .doctor-photo-frame {
        min-height: 500px;
        height: 500px;
    }

    .doctor-photo-clean .doctor-badge {
        right: 12px;
        bottom: 25px;
    }

}


/* MOBILE */

@media (max-width: 560px) {

    .doctor-photo-clean,
    .doctor-photo-clean .doctor-photo-frame {
        min-height: 420px;
        height: 420px;
    }

    .doctor-photo-clean .doctor-photo-frame {
        border-radius: 22px;
    }

    .doctor-photo-clean .doctor-about-image {
        object-position: center center !important;
    }

    .doctor-photo-clean .doctor-badge {
        right: 10px;
        bottom: 18px;
    }

}
