:root {
    --white: #FFFFFF;
    --blue-soft: #D9F3F7;
    --blue-main: #2C9AB7;
    --blue-dark: #164E63;
    --gray-text: #4B5563;
    --mint: #A7F3D0;
    --surface: #F7FCFD;
    --surface-strong: #ECFAFC;
    --shadow: 0 24px 70px rgba(22, 78, 99, 0.12);
    --shadow-soft: 0 14px 36px rgba(22, 78, 99, 0.08);
}

body {
    background:
        linear-gradient(180deg, rgba(217, 243, 247, 0.18), rgba(255, 255, 255, 0) 420px),
        var(--white);
    color: var(--gray-text);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    line-height: 1.7;
    padding-top: 76px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--blue-dark);
    font-weight: 800;
    line-height: 1.15;
}

a {
    color: var(--blue-main);
}

.navbar-brand {
    align-items: center;
    color: var(--blue-dark);
    display: inline-flex;
    font-weight: 900;
    gap: 0.75rem;
    letter-spacing: -0.02em;
    min-width: 0;
    text-decoration: none;
}

.navbar {
    backdrop-filter: blur(16px);
}

.brand-logo {
    display: block;
    flex: 0 0 auto;
    height: 56px;
    object-fit: contain;
    width: 56px;
}

.brand-text {
    color: var(--blue-dark);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1;
    white-space: nowrap;
}

.nav-link {
    color: var(--gray-text);
    font-weight: 700;
}

.nav-link.active,
.nav-link:hover {
    color: var(--blue-main);
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    background: var(--mint);
    border-radius: 999px;
    bottom: 2px;
    content: "";
    height: 3px;
    left: 0.5rem;
    position: absolute;
    right: 0.5rem;
}

.btn-primary {
    background-color: var(--blue-main);
    border-color: var(--blue-main);
    color: var(--white);
    font-weight: 800;
}

.btn-primary:hover {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
}

.btn-outline-primary {
    border-color: var(--blue-main);
    color: var(--blue-dark);
    font-weight: 800;
}

.btn-outline-primary:hover {
    background-color: var(--blue-main);
    border-color: var(--blue-main);
}

.hero-section {
    background:
        radial-gradient(circle at 82% 18%, rgba(167, 243, 208, 0.6), transparent 28%),
        radial-gradient(circle at 12% 85%, rgba(44, 154, 183, 0.16), transparent 32%),
        linear-gradient(135deg, var(--white) 0%, var(--blue-soft) 100%);
    overflow: hidden;
    padding: 104px 0 96px;
    position: relative;
}

.hero-section::before {
    background-image:
        linear-gradient(rgba(44, 154, 183, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 154, 183, 0.09) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    inset: 0;
    opacity: 0.35;
    position: absolute;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1,
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    letter-spacing: -0.05em;
    margin-bottom: 1.25rem;
}

.lead {
    color: var(--gray-text);
    font-size: 1.18rem;
    margin-bottom: 2rem;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hero-trust-row span {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(44, 154, 183, 0.14);
    border-radius: 999px;
    color: var(--blue-dark);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.55rem 0.9rem;
}

.eyebrow {
    color: var(--blue-main);
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-visual {
    min-height: 560px;
    position: relative;
}

.image-placeholder {
    align-items: center;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(217, 243, 247, 0.92)),
        radial-gradient(circle at 72% 20%, rgba(167, 243, 208, 0.8), transparent 34%);
    border: 1px solid rgba(44, 154, 183, 0.2);
    border-radius: 40px;
    box-shadow: var(--shadow);
    color: var(--blue-dark);
    display: flex;
    flex-direction: column;
    height: 420px;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    position: relative;
    text-align: center;
}

.image-placeholder::before,
.image-placeholder::after {
    border: 1px solid rgba(44, 154, 183, 0.16);
    border-radius: 999px;
    content: "";
    position: absolute;
}

.image-placeholder::before {
    height: 260px;
    right: -80px;
    top: -70px;
    width: 260px;
}

.image-placeholder::after {
    bottom: -100px;
    height: 230px;
    left: -70px;
    width: 230px;
}

.placeholder-icon {
    align-items: center;
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    color: var(--blue-main);
    display: inline-flex;
    font-size: 3rem;
    height: 96px;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 96px;
    z-index: 1;
}

.image-placeholder strong,
.image-placeholder small {
    z-index: 1;
}

.image-placeholder strong {
    font-size: 1.35rem;
}

.image-placeholder small {
    color: var(--gray-text);
    margin-top: 0.25rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(44, 154, 183, 0.18);
    border-radius: 36px;
    box-shadow: var(--shadow);
    padding: 42px;
    position: absolute;
    right: 0;
    top: 260px;
    width: min(92%, 520px);
}

.hero-icon {
    align-items: center;
    background: var(--blue-dark);
    border-radius: 24px;
    color: var(--mint);
    display: flex;
    font-size: 3rem;
    font-weight: 900;
    height: 88px;
    justify-content: center;
    margin-bottom: 2rem;
    width: 88px;
}

.hero-stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem;
}

.hero-stats div {
    background: var(--surface);
    border-radius: 20px;
    padding: 1rem;
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: var(--blue-dark);
}

.hero-stats span {
    font-size: 0.85rem;
}

.section-padding {
    padding: 96px 0;
}

.section-heading {
    margin-bottom: 2.5rem;
    max-width: 760px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -0.04em;
}

.service-card,
.benefit-card,
.values-card,
.contact-card,
.contact-form {
    background: var(--white);
    border: 1px solid rgba(44, 154, 183, 0.16);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    padding: 30px;
}

.service-card {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.service-card h3,
.benefit-card h3 {
    font-size: 1.25rem;
}

.service-icon {
    align-items: center;
    background: linear-gradient(135deg, var(--blue-soft), var(--mint));
    border-radius: 18px;
    color: var(--blue-dark);
    display: inline-flex;
    font-size: 1.35rem;
    font-weight: 900;
    height: 54px;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 54px;
}

.service-card-top {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.service-card-top .service-icon {
    margin-bottom: 0;
}

.card-number {
    color: var(--blue-main);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.benefit-card {
    min-height: 100%;
}

.benefit-card span {
    color: var(--blue-main);
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
}

.about-strip {
    background:
        radial-gradient(circle at 92% 18%, rgba(167, 243, 208, 0.18), transparent 28%),
        linear-gradient(135deg, #0f3d4f, var(--blue-dark));
    color: rgba(255, 255, 255, 0.78);
    padding: 72px 0;
}

.about-strip h2 {
    color: var(--white);
}

.about-strip .eyebrow,
.about-strip .text-link {
    color: var(--mint);
}

.text-link {
    font-weight: 900;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.cta-section {
    padding: 56px 0 104px;
}

.cta-panel {
    align-items: center;
    background:
        radial-gradient(circle at 10% 20%, rgba(167, 243, 208, 0.45), transparent 26%),
        radial-gradient(circle at 86% 82%, rgba(217, 243, 247, 0.22), transparent 32%),
        linear-gradient(135deg, var(--blue-main), var(--blue-dark));
    border-radius: 34px;
    box-shadow: var(--shadow);
    color: rgba(255, 255, 255, 0.84);
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    overflow: hidden;
    padding: 52px;
    position: relative;
}

.cta-panel::after {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    content: "";
    height: 260px;
    position: absolute;
    right: -90px;
    top: -90px;
    width: 260px;
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel h2 {
    color: var(--white);
}

.cta-panel .eyebrow {
    color: var(--mint);
}

.cta-actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.page-hero {
    background:
        radial-gradient(circle at 85% 10%, rgba(167, 243, 208, 0.46), transparent 28%),
        linear-gradient(135deg, var(--surface), var(--blue-soft));
    padding: 88px 0 72px;
}

.page-hero p {
    font-size: 1.15rem;
    max-width: 780px;
}

.check-list,
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li,
.contact-list li {
    border-bottom: 1px solid rgba(44, 154, 183, 0.14);
    padding: 0.85rem 0;
}

.check-list li::before {
    color: var(--blue-main);
    content: "✓";
    font-weight: 900;
    margin-right: 10px;
}

.clinic-note {
    background: var(--surface-strong);
    border-left: 4px solid var(--blue-main);
    border-radius: 18px;
    color: var(--blue-dark);
    margin-top: 2rem;
    padding: 1rem 1.2rem;
}

.form-intro {
    border-bottom: 1px solid rgba(44, 154, 183, 0.14);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.form-intro h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.form-control,
.form-select {
    border-color: rgba(44, 154, 183, 0.22);
    border-radius: 16px;
    padding: 0.9rem 1rem;
}

.form-control:disabled,
.form-select:disabled {
    background-color: var(--surface);
    color: rgba(75, 85, 99, 0.75);
    opacity: 1;
}

.contact-card {
    background:
        radial-gradient(circle at 90% 0%, rgba(167, 243, 208, 0.4), transparent 32%),
        var(--white);
    position: sticky;
    top: 104px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-weight: 900;
}

.btn-whatsapp:hover {
    background: #1faf54;
    color: var(--white);
}

.btn-maps {
    background: var(--blue-dark);
    color: var(--white);
    font-weight: 900;
}

.btn-maps:hover {
    background: #0f3d4f;
    color: var(--white);
}

.contact-actions,
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-actions {
    margin-top: 1.25rem;
}

.contact-help {
    background: var(--surface);
    border-radius: 22px;
    margin-top: 1.5rem;
    padding: 1.25rem;
}

.contact-help p {
    margin-bottom: 0;
}

.service-detail-hero p {
    max-width: 920px;
}

.breadcrumb-nav {
    margin-bottom: 1.5rem;
}

.breadcrumb-nav ol {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-nav li {
    color: var(--gray-text);
    font-size: 0.9rem;
    font-weight: 800;
}

.breadcrumb-nav li:not(:last-child)::after {
    color: rgba(75, 85, 99, 0.46);
    content: ">";
    margin-left: 0.5rem;
}

.breadcrumb-nav a {
    color: var(--blue-main);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.detail-list {
    display: grid;
    gap: 1rem;
}

.detail-list-item {
    background: var(--white);
    border: 1px solid rgba(44, 154, 183, 0.16);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 1.4rem;
}

.detail-list-item span {
    color: var(--blue-main);
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin-bottom: 0.65rem;
}

.detail-list-item h3 {
    font-size: 1.08rem;
    margin-bottom: 0;
}

.service-side-card {
    top: 112px;
}

.when-list {
    display: grid;
    gap: 0.9rem;
}

.when-list-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
    padding: 1rem 1.15rem;
}

.faq-card {
    background: var(--white);
    border: 1px solid rgba(44, 154, 183, 0.16);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

.faq-card h3 {
    font-size: 1.18rem;
}

.service-related-section {
    padding-top: 32px;
}

.related-services {
    margin-top: 3rem;
}

.related-services h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
}

.related-service-link {
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(44, 154, 183, 0.16);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    color: var(--blue-dark);
    display: flex;
    gap: 1rem;
    padding: 1.15rem;
    text-decoration: none;
}

.related-service-link:hover {
    color: var(--blue-main);
    transform: translateY(-3px);
}

.related-service-link span {
    align-items: center;
    background: linear-gradient(135deg, var(--blue-soft), var(--mint));
    border-radius: 16px;
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.whatsapp-float {
    background: #25D366;
    border-radius: 999px;
    bottom: 24px;
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
    color: var(--white);
    font-weight: 900;
    padding: 14px 20px;
    position: fixed;
    right: 24px;
    text-decoration: none;
    z-index: 1030;
}

.whatsapp-float:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-section {
    background:
        radial-gradient(circle at 12% 15%, rgba(167, 243, 208, 0.12), transparent 28%),
        linear-gradient(135deg, #0b3444, #0f3d4f);
    padding: 60px 0 28px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    display: inline-block;
    padding: 0.25rem 0;
    text-decoration: none;
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.18);
    margin: 2rem 0;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.footer-badges span,
.footer-whatsapp {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.45rem 0.75rem;
    text-decoration: none;
}

.footer-whatsapp:hover {
    color: var(--mint);
}

@media (max-width: 991.98px) {
    .hero-section,
    .section-padding,
    .page-hero {
        padding: 64px 0;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .hero-card {
        margin: -72px auto 0;
        position: relative;
        top: auto;
        width: 92%;
    }

    .contact-card {
        position: static;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 68px;
        padding-bottom: 72px;
    }

    .hero-card,
    .service-card,
    .benefit-card,
    .values-card,
    .contact-card,
    .contact-form,
    .cta-panel {
        border-radius: 22px;
        padding: 24px;
    }

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

    .image-placeholder {
        border-radius: 26px;
        height: 320px;
    }

    .hero-card {
        margin-top: -48px;
        width: 94%;
    }

    .navbar-brand {
        gap: 0.55rem;
    }

    .brand-logo {
        height: 44px;
        width: 44px;
    }

    .brand-text {
        font-size: 1.02rem;
    }

    .hero-trust-row,
    .cta-actions,
    .service-hero-actions {
        flex-direction: column;
    }

    .hero-trust-row span,
    .cta-actions .btn,
    .service-hero-actions .btn {
        text-align: center;
        width: 100%;
    }

    .whatsapp-float {
        bottom: 12px;
        left: 16px;
        right: 16px;
        padding: 11px 16px;
        text-align: center;
    }
}
