.contact-modal[hidden] {
    display: none !important;
}

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

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2rem);
    isolation: isolate;
}

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(0, 195, 255, 0.16), transparent 36rem),
        rgba(0, 10, 28, 0.78);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.contact-modal__dialog {
    --contact-cyan: #08c7df;
    --contact-green: #2ad69c;
    --contact-navy: #06152d;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(18rem, 0.82fr) minmax(28rem, 1.18fr);
    width: min(62rem, 100%);
    max-height: min(46rem, calc(100dvh - 2rem));
    overflow: hidden;
    border: 1px solid rgba(126, 181, 220, 0.24);
    border-radius: 1.75rem;
    background: #f7fbff;
    box-shadow:
        0 2.2rem 6rem rgba(0, 8, 24, 0.46),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transform-origin: 50% 46%;
    animation: contact-dialog-in 220ms cubic-bezier(.22, .8, .3, 1) both;
}

.contact-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(104, 140, 176, 0.26);
    border-radius: 999px;
    background: rgba(248, 252, 255, 0.86);
    color: #17314f;
    box-shadow: 0 .5rem 1.5rem rgba(0, 22, 48, 0.12);
    cursor: pointer;
    transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.contact-modal__close svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.contact-modal__close:hover {
    transform: rotate(4deg) scale(1.04);
    border-color: rgba(8, 159, 198, 0.52);
    background: #fff;
}

.contact-modal__close:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form__submit:focus-visible,
.contact-modal__whatsapp:focus-visible,
.contact-modal__success-actions :is(a, button):focus-visible {
    outline: 3px solid rgba(15, 195, 222, 0.32);
    outline-offset: 3px;
}

.contact-modal__brand {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    padding: clamp(2rem, 3vw, 2.8rem);
    color: #eaf7ff;
    background:
        linear-gradient(145deg, rgba(8, 27, 57, 0.99), rgba(3, 18, 41, 0.99)),
        #06152d;
}

.contact-modal__brand::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .32;
    background-image:
        linear-gradient(rgba(95, 191, 229, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(95, 191, 229, .08) 1px, transparent 1px);
    background-size: 2rem 2rem;
    mask-image: linear-gradient(to bottom right, #000, transparent 76%);
}

.contact-modal__brand-glow {
    position: absolute;
    width: 25rem;
    height: 25rem;
    top: -12rem;
    right: -10rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 208, 209, .3), rgba(0, 157, 255, .12) 38%, transparent 70%);
    filter: blur(6px);
    pointer-events: none;
}

.contact-modal__logo,
.contact-modal__eyebrow,
.contact-modal__brand h2,
.contact-modal__brand > p,
.contact-modal__value,
.contact-modal__whatsapp {
    position: relative;
    z-index: 1;
}

.contact-modal__logo {
    width: clamp(9.75rem, 12vw, 11.5rem);
    height: auto;
    object-fit: contain;
    margin-bottom: 1.65rem;
}

.contact-modal__eyebrow,
.contact-modal__step {
    margin: 0 0 .7rem;
    color: #1abfd7;
    font-size: .73rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-modal__brand h2 {
    max-width: 12ch;
    margin: 0;
    color: #fff;
    font-size: clamp(1.72rem, 2.45vw, 2.3rem);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.contact-modal__brand > p:not(.contact-modal__eyebrow) {
    max-width: 34rem;
    margin: .95rem 0 0;
    color: #a8bed2;
    font-size: .96rem;
    line-height: 1.62;
}

.contact-modal__value {
    display: grid;
    gap: .7rem;
    margin: 1.35rem 0 .7rem;
    padding: 0;
    list-style: none;
}

.contact-modal__value li {
    display: grid;
    grid-template-columns: 2.35rem 1fr;
    align-items: center;
    gap: .72rem;
}

.contact-modal__value li > span {
    display: grid;
    place-items: center;
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid rgba(64, 214, 216, .24);
    border-radius: .72rem;
    background: rgba(10, 49, 76, .72);
    color: #33d9bd;
}

.contact-modal__value svg {
    width: 1.12rem;
    height: 1.12rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-modal__value strong,
.contact-modal__value small {
    display: block;
}

.contact-modal__value strong {
    color: #eefaff;
    font-size: .89rem;
    font-weight: 760;
}

.contact-modal__value small {
    margin-top: .15rem;
    color: #8fa8be;
    font-size: .74rem;
    line-height: 1.38;
}

.contact-modal__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    min-height: 2.75rem;
    margin-top: .15rem;
    color: #6ce1b4;
    font-size: .84rem;
    font-weight: 760;
    text-decoration: none;
}

.contact-modal__whatsapp:hover {
    color: #9ff0cf;
}

.contact-modal__whatsapp svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-modal__panel {
    position: relative;
    min-width: 0;
    overflow-y: auto;
    padding: clamp(2rem, 3vw, 2.75rem) clamp(1.4rem, 4vw, 3.6rem) 1.85rem;
    color: #102a45;
    background:
        radial-gradient(circle at 100% 0%, rgba(49, 208, 205, .11), transparent 16rem),
        linear-gradient(180deg, #fbfdff, #f3f8fc);
    scrollbar-width: thin;
    scrollbar-color: #bfd1df transparent;
}

.contact-modal__heading {
    max-width: 35rem;
    margin-bottom: 1.35rem;
}

.contact-modal__heading h2,
.contact-modal__success h2 {
    margin: 0;
    color: #071e39;
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.contact-modal__heading > p:last-child,
.contact-modal__success > p:not(.contact-modal__step) {
    margin: .75rem 0 0;
    color: #60758a;
    font-size: .93rem;
    line-height: 1.65;
}

.contact-form {
    display: grid;
    gap: .95rem;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem 1rem;
}

.contact-field {
    min-width: 0;
}

.contact-field label,
.contact-field__label-row label {
    display: block;
    margin: 0 0 .45rem;
    color: #1c3a56;
    font-size: .79rem;
    font-weight: 760;
}

.contact-field label > span,
.contact-field__label-row label > span {
    color: #0a9fad;
}

.contact-field label small {
    color: #8092a5;
    font-size: .72rem;
    font-weight: 600;
}

.contact-field__control,
.contact-field__phone {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #cfdae4;
    border-radius: .88rem;
    background: #fff;
    box-shadow: 0 .4rem 1.1rem rgba(11, 41, 67, .035);
    transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.contact-field__control {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    align-items: stretch;
}

.contact-field__control:focus-within,
.contact-field__phone:focus-within {
    border-color: #1abfd7;
    box-shadow: 0 0 0 4px rgba(26, 191, 215, .11), 0 .7rem 1.6rem rgba(11, 41, 67, .06);
}

.contact-field__control > svg {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    width: 1.12rem;
    height: 1.12rem;
    margin: 0;
    overflow: visible;
    color: #7590a6;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    z-index: 2;
}

.contact-field__control > input {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    border-left: 1px solid rgba(207, 218, 228, .58);
    border-radius: 0;
}

.contact-field input:-webkit-autofill,
.contact-field input:-webkit-autofill:hover,
.contact-field input:-webkit-autofill:focus,
.contact-field input:-webkit-autofill:active {
    -webkit-text-fill-color: #102a45 !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    caret-color: #102a45;
    transition: background-color 9999s ease-out 0s;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #102a45;
    background: transparent;
    font: inherit;
    font-size: .89rem;
}

.contact-field input {
    min-height: 3.15rem;
    padding: .72rem .9rem;
}

.contact-field textarea {
    min-height: 6.7rem;
    resize: vertical;
    padding: .9rem 1rem;
    border: 1px solid #cfdae4;
    border-radius: .88rem;
    background: #fff;
    box-shadow: 0 .4rem 1.1rem rgba(11, 41, 67, .035);
    line-height: 1.55;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-field textarea:focus {
    border-color: #1abfd7;
    box-shadow: 0 0 0 4px rgba(26, 191, 215, .11), 0 .7rem 1.6rem rgba(11, 41, 67, .06);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #9aabb9;
    opacity: 1;
}

.contact-field__phone input {
    padding-left: .7rem;
}

.contact-field__prefix {
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    flex: 0 0 auto;
    padding: 0 .85rem;
    border-right: 1px solid #dce5ec;
    color: #537089;
    font-size: .84rem;
    font-weight: 760;
}

.contact-field__help {
    display: block;
    margin-top: .34rem;
    color: #7d90a2;
    font-size: .7rem;
}

.contact-field__label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contact-field__label-row > span {
    color: #8799aa;
    font-size: .7rem;
    font-variant-numeric: tabular-nums;
}

.contact-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-form__status {
    min-height: 1.2rem;
    margin-top: -.25rem;
    color: #63788c;
    font-size: .78rem;
    line-height: 1.45;
}

.contact-form__status[data-state="error"] {
    color: #bb2c36;
}

.contact-form__status[data-state="success"] {
    color: #0b8a68;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    min-height: 3.35rem;
    width: 100%;
    padding: .9rem 1.2rem;
    border: 0;
    border-radius: .92rem;
    color: #fff;
    background: linear-gradient(105deg, #168ff5 0%, #12b9d8 52%, #23cc9a 100%);
    box-shadow: 0 .9rem 2rem rgba(16, 157, 208, .2);
    font-size: .91rem;
    font-weight: 820;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

.contact-form__submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 1rem 2.3rem rgba(16, 157, 208, .28);
    filter: saturate(1.05);
}

.contact-form__submit:disabled::before {
    content: "";
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: contact-submit-spin .75s linear infinite;
}

.contact-form__submit:disabled > svg {
    display: none;
}

.contact-form__submit:disabled {
    cursor: wait;
    opacity: .74;
}

.contact-form__submit svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-form__microcopy {
    margin: -.35rem 0 0;
    color: #8797a7;
    font-size: .69rem;
    line-height: 1.45;
    text-align: center;
}

.contact-modal__success {
    min-height: 100%;
    display: grid;
    place-items: center;
    max-width: none;
    padding: .5rem 0;
}

.contact-modal__success[hidden] {
    display: none !important;
}

.contact-modal__success-card {
    position: relative;
    width: min(31rem, 100%);
    padding: clamp(1.8rem, 4vw, 2.35rem);
    overflow: hidden;
    border: 1px solid rgba(120, 160, 188, .2);
    border-radius: 1.45rem;
    background:
        radial-gradient(circle at 50% 0%, rgba(26, 191, 215, .075), transparent 15rem),
        rgba(255, 255, 255, .82);
    box-shadow:
        0 1.3rem 3.4rem rgba(11, 41, 67, .1),
        0 0 0 1px rgba(255, 255, 255, .72) inset;
    text-align: center;
    animation: contact-success-card-in 360ms cubic-bezier(.22, .8, .3, 1) both;
}

.contact-modal__success-visual {
    position: relative;
    display: grid;
    place-items: center;
    width: 6.1rem;
    height: 6.1rem;
    margin: 0 auto 1.15rem;
}

.contact-modal__success-visual > svg {
    position: relative;
    z-index: 2;
    width: 5.5rem;
    height: 5.5rem;
    overflow: visible;
    filter: drop-shadow(0 .75rem 1.2rem rgba(13, 168, 119, .15));
}

.contact-modal__success-glow {
    position: absolute;
    inset: .2rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 214, 156, .25), rgba(8, 199, 223, .08) 55%, transparent 72%);
    animation: contact-success-glow 820ms ease-out both;
}

.contact-modal__success-ring {
    fill: rgba(224, 251, 242, .82);
    stroke: #22c79a;
    stroke-width: 2.3;
    stroke-dasharray: 170;
    stroke-dashoffset: 170;
    transform-origin: center;
    animation: contact-success-ring .58s .06s cubic-bezier(.2, .75, .25, 1) forwards;
}

.contact-modal__success-check {
    fill: none;
    stroke: #0a9a70;
    stroke-width: 4.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: contact-success-check .42s .46s cubic-bezier(.2, .8, .3, 1) forwards;
}

.contact-modal__success-spark {
    position: absolute;
    z-index: 3;
    width: .48rem;
    height: .48rem;
    border-radius: 50%;
    opacity: 0;
    background: linear-gradient(145deg, #17cbd7, #2bd59d);
    box-shadow: 0 0 .8rem rgba(22, 200, 192, .4);
    animation: contact-success-spark .48s .48s ease-out forwards;
}

.contact-modal__success-spark--one { top: .65rem; right: .45rem; }
.contact-modal__success-spark--two { bottom: .85rem; left: .2rem; animation-delay: .56s; }
.contact-modal__success-spark--three { top: 1.25rem; left: .3rem; width: .34rem; height: .34rem; animation-delay: .64s; }

.contact-modal__success-card .contact-modal__step {
    margin-bottom: .65rem;
}

.contact-modal__success-card h2 {
    max-width: 14ch;
    margin-inline: auto;
    font-size: clamp(1.8rem, 2.65vw, 2.35rem);
}

.contact-modal__success-card > p:not(.contact-modal__step) {
    max-width: 29rem;
    margin: .8rem auto 0;
    color: #60758a;
    font-size: .93rem;
    line-height: 1.65;
}

.contact-modal__success-note {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    max-width: 28rem;
    margin: 1.25rem auto 0;
    padding: .82rem .95rem;
    border: 1px solid rgba(21, 163, 119, .15);
    border-radius: .9rem;
    color: #47677b;
    background: rgba(235, 252, 246, .72);
    font-size: .78rem;
    line-height: 1.5;
    text-align: left;
}

.contact-modal__success-note > span {
    width: .52rem;
    height: .52rem;
    flex: 0 0 auto;
    margin-top: .3rem;
    border-radius: 50%;
    background: #20b987;
    box-shadow: 0 0 0 .3rem rgba(32, 185, 135, .1);
}

.contact-modal__success-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.35rem;
}

.contact-modal__success-actions :is(button, a) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: .75rem 1.2rem;
    border-radius: .78rem;
    font-size: .82rem;
    font-weight: 780;
    text-decoration: none;
}

.contact-modal__success-actions button {
    min-width: 6.2rem;
    border: 0;
    color: #fff;
    background: #0b3157;
    cursor: pointer;
}

.contact-modal__success-actions a {
    border: 1px solid rgba(16, 169, 119, .25);
    color: #0b835e;
    background: #f3fff9;
    box-shadow: 0 .45rem 1.2rem rgba(13, 168, 119, .07);
}

@media (max-width: 52rem) {
    .contact-modal {
        padding: .75rem;
    }

    .contact-modal__dialog {
        grid-template-columns: 1fr;
        width: min(42rem, 100%);
        max-height: calc(100dvh - 1.5rem);
        overflow-y: auto;
    }

    .contact-modal__brand {
        padding: 1.55rem 1.4rem 1.35rem;
    }

    .contact-modal__logo {
        width: 8.8rem;
        margin-bottom: 1.2rem;
    }

    .contact-modal__brand h2 {
        max-width: 22ch;
        font-size: 1.55rem;
    }

    .contact-modal__brand > p:not(.contact-modal__eyebrow) {
        margin-top: .7rem;
        font-size: .86rem;
        line-height: 1.55;
    }

    .contact-modal__value {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .55rem;
        margin: 1.1rem 0 .8rem;
    }

    .contact-modal__value li {
        grid-template-columns: 2.2rem 1fr;
        gap: .5rem;
    }

    .contact-modal__value li > span {
        width: 2.1rem;
        height: 2.1rem;
    }

    .contact-modal__value small {
        display: none;
    }

    .contact-modal__whatsapp {
        min-height: 2.25rem;
    }

    .contact-modal__panel {
        overflow: visible;
        padding: 1.65rem 1.35rem 1.55rem;
    }

    .contact-modal__close {
        top: .7rem;
        right: .7rem;
    }
}

@media (max-width: 38rem) {
    .contact-modal {
        place-items: stretch;
        padding: 0;
    }

    .contact-modal__dialog {
        width: 100%;
        max-height: 100dvh;
        min-height: 100dvh;
        border: 0;
        border-radius: 0;
    }

    .contact-modal__brand {
        padding: 1.2rem 1rem 1rem;
    }

    .contact-modal__eyebrow {
        font-size: .66rem;
    }

    .contact-modal__brand h2 {
        max-width: 24ch;
        font-size: 1.35rem;
    }

    .contact-modal__brand > p:not(.contact-modal__eyebrow),
    .contact-modal__value,
    .contact-modal__whatsapp {
        display: none;
    }

    .contact-modal__logo {
        width: 8rem;
        margin-bottom: .9rem;
    }

    .contact-modal__panel {
        padding: 1.45rem 1rem 1.25rem;
    }

    .contact-modal__heading {
        margin-bottom: 1.2rem;
    }

    .contact-modal__heading h2 {
        font-size: 1.55rem;
    }

    .contact-modal__heading > p:last-child {
        font-size: .84rem;
        line-height: 1.5;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: .82rem;
    }

    .contact-form {
        gap: .9rem;
    }

    .contact-field input {
        min-height: 3.05rem;
    }

    .contact-field textarea {
        min-height: 6.2rem;
    }

    .contact-form__submit {
        min-height: 3.2rem;
    }

    .contact-modal__success {
        min-height: 25rem;
        padding: .25rem 0;
    }

    .contact-modal__success-card {
        padding: 1.55rem 1.15rem;
        border-radius: 1.2rem;
    }

    .contact-modal__success-visual {
        width: 5.3rem;
        height: 5.3rem;
        margin-bottom: .9rem;
    }

    .contact-modal__success-visual > svg {
        width: 4.9rem;
        height: 4.9rem;
    }

    .contact-modal__success-card h2 {
        font-size: 1.65rem;
    }

    .contact-modal__success-note {
        font-size: .75rem;
    }

    .contact-modal__success-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .contact-modal__success-actions :is(button, a) {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-modal__dialog {
        animation: none;
    }

    .contact-modal__close,
    .contact-form__submit,
    .contact-field__control,
    .contact-field__phone,
    .contact-field textarea {
        transition: none;
    }

    .contact-form__submit:disabled::before,
    .contact-modal__success-card,
    .contact-modal__success-glow,
    .contact-modal__success-ring,
    .contact-modal__success-check,
    .contact-modal__success-spark {
        animation: none !important;
    }

    .contact-modal__success-ring,
    .contact-modal__success-check {
        stroke-dashoffset: 0;
    }

    .contact-modal__success-spark {
        opacity: .7;
    }
}

@keyframes contact-submit-spin {
    to { transform: rotate(360deg); }
}

@keyframes contact-success-card-in {
    from { opacity: 0; transform: translateY(10px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes contact-success-glow {
    0% { opacity: 0; transform: scale(.55); }
    55% { opacity: 1; transform: scale(1.16); }
    100% { opacity: .7; transform: scale(1); }
}

@keyframes contact-success-ring {
    0% { stroke-dashoffset: 170; transform: scale(.82); opacity: .35; }
    100% { stroke-dashoffset: 0; transform: scale(1); opacity: 1; }
}

@keyframes contact-success-check {
    to { stroke-dashoffset: 0; }
}

@keyframes contact-success-spark {
    0% { opacity: 0; transform: scale(.25) translateY(4px); }
    55% { opacity: 1; transform: scale(1.2) translateY(-2px); }
    100% { opacity: .8; transform: scale(1) translateY(0); }
}

@keyframes contact-dialog-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* CLEM-CONTACT-08-BUTTON-VISIBLE-START */
.contact-form__status:empty {
    min-height: 0;
    margin: 0;
}

@media (min-width: 52.01rem) and (max-height: 52rem) {
    .contact-modal {
        padding: .5rem clamp(1rem, 2vw, 1.5rem);
    }

    .contact-modal__dialog {
        max-height: calc(100dvh - 1rem);
    }

    .contact-modal__brand {
        padding: 1.7rem clamp(1.9rem, 2.7vw, 2.35rem);
    }

    .contact-modal__logo {
        width: 10.25rem;
        margin-bottom: 1.05rem;
    }

    .contact-modal__eyebrow,
    .contact-modal__step {
        margin-bottom: .5rem;
    }

    .contact-modal__brand h2 {
        font-size: clamp(1.65rem, 2.15vw, 2.02rem);
    }

    .contact-modal__brand > p:not(.contact-modal__eyebrow) {
        margin-top: .68rem;
        font-size: .9rem;
        line-height: 1.48;
    }

    .contact-modal__value {
        gap: .48rem;
        margin: .9rem 0 .35rem;
    }

    .contact-modal__value li {
        grid-template-columns: 2.15rem 1fr;
        gap: .62rem;
    }

    .contact-modal__value li > span {
        width: 2.1rem;
        height: 2.1rem;
    }

    .contact-modal__value strong {
        font-size: .84rem;
    }

    .contact-modal__value small {
        margin-top: .08rem;
        font-size: .7rem;
        line-height: 1.28;
    }

    .contact-modal__whatsapp {
        min-height: 2.35rem;
        margin-top: 0;
        font-size: .8rem;
    }

    .contact-modal__panel {
        padding: 1.45rem clamp(1.55rem, 3vw, 2.75rem) 1rem;
    }

    .contact-modal__heading {
        margin-bottom: .78rem;
        padding-right: 2.7rem;
    }

    .contact-modal__heading h2 {
        font-size: clamp(1.72rem, 2.25vw, 2.08rem);
    }

    .contact-modal__heading > p:last-child {
        margin-top: .48rem;
        font-size: .86rem;
        line-height: 1.45;
    }

    .contact-form {
        gap: .6rem;
    }

    .contact-form__grid {
        gap: .58rem .85rem;
    }

    .contact-field label,
    .contact-field__label-row label {
        margin-bottom: .3rem;
        font-size: .75rem;
    }

    .contact-field input {
        min-height: 2.8rem;
        padding-block: .62rem;
    }

    .contact-field__help {
        margin-top: .2rem;
        font-size: .66rem;
    }

    .contact-field textarea {
        height: 6.25rem;
        min-height: 6.25rem;
        padding: .72rem .9rem;
    }

    .contact-form__status {
        min-height: .9rem;
        margin-top: -.12rem;
        font-size: .72rem;
    }

    .contact-form__status:empty {
        min-height: 0;
        margin: 0;
    }

    .contact-form__submit {
        min-height: 3rem;
        padding: .72rem 1.1rem;
        border-radius: .82rem;
    }

    .contact-form__microcopy {
        margin-top: -.18rem;
        font-size: .65rem;
    }
}
/* CLEM-CONTACT-08-BUTTON-VISIBLE-END */
