:root {
    --ink: #0b1020;
    --navy: #07192c;
    --steel: #46566f;
    --gold: #b58a45;
    --sand: #efe7db;
    --mist: #faf7f1;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(181, 138, 69, 0.08), transparent 24%),
        linear-gradient(180deg, #f7f3eb 0%, #f5f1ea 38%, #f3efe8 100%);
}

.font-display {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Header */
.header-surface {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 25, 44, 0.9);
    color: #f8fbff;
    backdrop-filter: blur(16px);
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    transition: color 180ms ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    width: 0;
    background: rgba(181, 138, 69, 0.95);
    transition: width 180ms ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile drawer */
.menu-trigger,
.menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(2, 8, 18, 0.18);
    backdrop-filter: blur(12px);
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.menu-trigger {
    flex-direction: column;
    gap: 0.24rem;
}

.menu-trigger__line {
    display: block;
    width: 1.05rem;
    height: 2px;
    border-radius: 9999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-trigger.is-open .menu-trigger__line:first-child {
    transform: translateY(0.38rem) rotate(45deg);
}

.menu-trigger.is-open .menu-trigger__line:nth-child(2) {
    opacity: 0;
}

.menu-trigger.is-open .menu-trigger__line:last-child {
    transform: translateY(-0.38rem) rotate(-45deg);
}

.menu-trigger:active,
.menu-close:active {
    transform: scale(0.96);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(3, 9, 17, 0.68);
    backdrop-filter: blur(5px);
}

.menu-overlay.hidden,
.menu-drawer.hidden {
    display: none;
}

.menu-drawer {
    position: fixed;
    inset-inline: 0.7rem;
    top: 5.15rem;
    bottom: 0.7rem;
    z-index: 65;
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 5.85rem);
    max-height: calc(100svh - 5.85rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.15rem;
    background:
        linear-gradient(180deg, rgba(9, 27, 47, 0.99), rgba(5, 15, 28, 0.99)),
        rgba(7, 25, 44, 0.98);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    transform: translateY(-0.6rem) scale(0.98);
    opacity: 0;
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease;
}

.menu-drawer.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.menu-drawer__handle {
    align-self: center;
    width: 2.9rem;
    height: 0.25rem;
    margin-top: 0.7rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.24);
}

.menu-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.05rem 0.95rem;
}

.menu-drawer__eyebrow {
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(242, 207, 147, 0.9);
}

.menu-drawer__brand {
    margin-top: 0.18rem;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
}

.menu-drawer__body {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    gap: 0.85rem;
    overflow-y: auto;
    padding: 0.85rem 1.05rem 1.05rem;
}

.drawer-nav {
    display: grid;
    gap: 0.4rem;
}

.drawer-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    min-height: 3.05rem;
    border-radius: 0.8rem;
    padding: 0.7rem 0.78rem;
    font-size: 0.96rem;
    font-weight: 800;
    color: #f8fbff;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.drawer-link__index {
    flex: 0 0 auto;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    color: rgba(242, 207, 147, 0.9);
}

.drawer-link__text {
    min-width: 0;
}

.drawer-link__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(242, 207, 147, 0.96);
}

.drawer-link:active {
    transform: scale(0.985);
    background: rgba(255, 255, 255, 0.1);
}

.drawer-contact {
    margin-top: auto;
    border-radius: 1rem;
    border: 1px solid rgba(181, 138, 69, 0.22);
    background: rgba(181, 138, 69, 0.1);
    padding: 0.9rem;
}

.drawer-contact__label {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(242, 207, 147, 0.92);
}

.drawer-contact__text {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.48;
    color: rgba(255, 255, 255, 0.76);
}

.drawer-cta {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.8rem;
    border-radius: 9999px;
    background: #f2cf93;
    padding: 0.82rem 1rem;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #07192c;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

/* Hero background */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(6, 17, 29, 0.86) 0%, rgba(10, 23, 38, 0.72) 52%, rgba(16, 37, 61, 0.78) 100%),
        linear-gradient(180deg, rgba(7, 25, 44, 0.18), rgba(7, 25, 44, 0.56)),
        url('../img/lima-background.jpg') center center / cover no-repeat;
    background-blend-mode: normal, multiply, normal;
    filter: saturate(0.95) contrast(0.98);
}

/* Typography helpers */
.section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(70, 86, 111, 0.86);
}

.hero-overline {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(8px);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 0.85rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f8fbff;
    background: linear-gradient(135deg, #08192d 0%, #0f2a49 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(8, 25, 44, 0.18);
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #10263f 0%, #173559 100%);
    box-shadow: 0 16px 34px rgba(8, 25, 44, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 0.85rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f8fbff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn-secondary:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(181, 138, 69, 0.55);
}

/* Pills / cards */
.stat-pill {
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 25, 44, 0.7);
    backdrop-filter: blur(12px);
    padding: 0.85rem 0.9rem;
}

.stat-value {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(248, 251, 255, 0.72);
}

.hero-stage {
    position: relative;
    display: grid;
    align-items: center;
    justify-items: end;
    min-height: 100%;
}

.hero-copy,
.hero-visual {
    min-height: 100%;
}

.hero-stage__portrait {
    position: relative;
    overflow: hidden;
    border-radius: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    aspect-ratio: 4 / 5;
    width: min(100%, 440px);
    height: clamp(500px, 64svh, 590px);
    min-height: 0;
    max-width: 440px;
    box-shadow: 0 20px 52px rgba(2, 8, 18, 0.42);
}

.hero-stage__portrait::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%);
    pointer-events: none;
}

.hero-stage__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-stage__badge {
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(6, 17, 29, 0.8);
    padding: 0.65rem 0.75rem;
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.hero-stage__badge::after {
    content: '';
    position: absolute;
    inset: auto 0.85rem -0.5rem auto;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(181, 138, 69, 0.2);
    opacity: 0.35;
}

.hero-stage__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 9999px;
    background: rgba(181, 138, 69, 0.2);
    color: #f2cf93;
}

.hero-stage__badge-icon svg {
    width: 0.9rem;
    height: 0.9rem;
}

.area-tile__media {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    min-height: 170px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.06);
}

.area-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-tile__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 17, 29, 0.08), rgba(6, 17, 29, 0.72));
}

.area-tile__index {
    position: absolute;
    left: 0.9rem;
    top: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 2.4rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(6, 17, 29, 0.72);
    color: #f2cf93;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.contact-note {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 25, 44, 0.72);
    padding: 1rem;
}

.contact-stack {
    display: grid;
}

.contact-media {
    position: relative;
    overflow: hidden;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 0;
}

.contact-media__img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.contact-media__overlay {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 17, 29, 0.04), rgba(6, 17, 29, 0.9));
    padding: 1rem;
}

.mini-card {
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 25, 44, 0.92);
    padding: 1rem 1.05rem;
}

.mini-title {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(248, 251, 255, 0.72);
}

.mini-body {
    margin-top: 0.45rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(248, 251, 255, 0.94);
}

.area-tile {
    width: min(88vw, 440px);
    flex: 0 0 auto;
    border-radius: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 25, 44, 0.94);
    padding: 1.35rem 1.3rem;
    box-shadow: 0 16px 44px rgba(8, 25, 44, 0.26);
}

@media (min-width: 1024px) {
    .area-tile {
        width: auto;
    }
}

.step-tile {
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 25, 44, 0.94);
    padding: 1.2rem 1.1rem;
}

.step-index {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(181, 138, 69, 0.95);
}

.step-title {
    margin-top: 0.55rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.05;
    color: #ffffff;
}

.step-body {
    margin-top: 0.55rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(248, 251, 255, 0.92);
}

.metric-card {
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 25, 44, 0.95);
    padding: 1.2rem;
    text-align: center;
}

.metric-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.45rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.metric-label {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(248, 251, 255, 0.72);
}

.quote-card {
    border-radius: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 25, 44, 0.95);
    padding: 1.5rem;
    box-shadow: 0 18px 50px rgba(8, 25, 44, 0.2);
}

.bullet-card {
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 25, 44, 0.94);
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(248, 251, 255, 0.94);
}

.contact-card {
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 25, 44, 0.94);
    padding: 1rem;
    min-height: 6.4rem;
}

.contact-k {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(248, 251, 255, 0.72);
}

.contact-v {
    margin-top: 0.4rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(248, 251, 255, 0.94);
    overflow-wrap: anywhere;
}

.whatsapp-panel {
    display: grid;
    gap: 0.65rem;
    border-radius: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #0d8e54 0%, #0b6f43 55%, #075031 100%);
    padding: 1.4rem;
    color: #ffffff;
    box-shadow: 0 22px 60px rgba(7, 80, 49, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsapp-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 70px rgba(7, 80, 49, 0.34);
    filter: saturate(1.05);
}

.whatsapp-panel__eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.4rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
    padding: 0.35rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.whatsapp-panel__title {
    font-size: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.whatsapp-panel__copy {
    max-width: 34rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.whatsapp-panel__action {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.6rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.85rem 1.05rem;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.form-card {
    border-radius: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.96);
    padding: 1.3rem;
    box-shadow: 0 18px 50px rgba(8, 25, 44, 0.16);
}

@media (min-width: 640px) {
    .form-card {
        padding: 1.6rem;
    }
}

.form-field {
    display: grid;
    gap: 0.35rem;
}

.form-field span {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(70, 86, 111, 0.9);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.18);
    border-radius: 1rem;
    padding: 0.85rem 0.95rem;
    font-size: 0.98rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(181, 138, 69, 0.82);
    box-shadow: 0 0 0 4px rgba(181, 138, 69, 0.18);
}

/* FAQ */
.faq-highlights {
    display: grid;
}

.faq-highlight {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.95rem 1rem;
}

.faq-highlight__label {
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.faq-highlight__value {
    margin-top: 0.45rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
    color: rgba(248, 251, 255, 0.94);
}

.faq-item {
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 25, 44, 0.94);
    padding: 0.15rem;
}

.faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.1rem;
    text-align: left;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #f8fbff;
}

.faq-icon {
    flex: 0 0 auto;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(181, 138, 69, 0.3);
    background: rgba(181, 138, 69, 0.14);
    color: rgba(241, 207, 147, 0.98);
    transition: transform 180ms ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-panel {
    padding: 0 1.1rem 1.05rem 1.1rem;
}

.faq-answer {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(248, 251, 255, 0.9);
}

/* Reveal on scroll (progressive enhancement) */
.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.js .reveal.is-inview {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn-primary,
    .btn-secondary {
        transition: none;
    }
}

/* Utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 190px;
    padding: 0.9rem 1rem 0.9rem 0.9rem;
    border-radius: 1.15rem;
    text-align: left;
    letter-spacing: 0.05em;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 25%),
        linear-gradient(135deg, #0d8e54, #0f9f61 55%, #18b16f);
    box-shadow: 0 18px 44px rgba(12, 96, 61, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background-color 180ms ease;
}

.whatsapp-float__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 auto;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.16);
}

.whatsapp-float__icon svg {
    width: 1.05rem;
    height: 1.05rem;
}

.whatsapp-float__text {
    display: grid;
    gap: 0.08rem;
}

.whatsapp-float__eyebrow {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.whatsapp-float__title {
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 52px rgba(12, 96, 61, 0.46);
    filter: saturate(1.04);
}

@media (max-width: 640px) {
    .hero-overline {
        max-width: 100%;
        padding-inline: 0.85rem;
        padding-block: 0.58rem;
        line-height: 1.4;
        letter-spacing: 0.18em;
    }

    .hero-tag {
        min-height: 2.1rem;
        padding-inline: 0.72rem;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .hero-stage__portrait {
        width: 100%;
        height: min(112vw, 430px);
        max-width: none;
        min-height: 0;
    }

    .whatsapp-float {
        min-width: 156px;
        padding: 0.8rem 0.88rem 0.8rem 0.78rem;
        right: 0.8rem;
        bottom: 0.8rem;
    }

    .whatsapp-float__title {
        font-size: 0.76rem;
    }

    .whatsapp-panel {
        padding: 1.2rem;
    }

    .whatsapp-panel__title {
        font-size: 1.25rem;
    }

    .faq-highlight {
        padding: 0.85rem 0.95rem;
    }

    .contact-media__img {
        height: 210px;
    }
}

@media (min-width: 1024px) {
    .hero-copy,
    .hero-visual {
        min-height: calc(100svh - 7rem);
    }

    .hero-stage__portrait {
        min-height: 0;
    }
}
