:root {
    --ue-verde: #00995d;
    --ue-verde-80: #33ad7d;
    --ue-verde-60: #66c2a0;
    --ue-verde-40: #99d6be;
    --ue-verde-20: #ccebdf;

    --ue-lima: #b1d34b;
    --ue-lima-80: #c1dc6f;
    --ue-lima-60: #d0e592;
    --ue-lima-40: #e0edb7;
    --ue-lima-20: #eff6db;

    --ue-petroleo: #004e4c;
    --ue-petroleo-80: #33716f;
    --ue-petroleo-60: #669593;
    --ue-petroleo-40: #99b8b7;
    --ue-petroleo-20: #ccdbdb;

    --ue-laranja: #f47920;
    --ue-laranja-20: #fde4d2;

    --ue-rose: #d2a494;
    --ue-rose-20: #f6edea;
    --ue-rosa: #f1cdcd;
    --ue-rosa-20: #fcf5f5;
    --ue-areia: #ece3d9;
    --ue-areia-80: #f0e9e1;
    --ue-areia-60: #f4eee8;
    --ue-areia-40: #f7f4f0;
    --ue-areia-20: #fbf9f7;
    --ue-amarelo: #ffe596;
    --ue-amarelo-20: #fffaea;
    --ue-menta: #cde3bb;
    --ue-menta-40: #ebf4e4;
    --ue-menta-20: #f5f9f1;
    --ue-ciano: #a4d8de;
    --ue-ciano-40: #dbf0f2;
    --ue-ciano-20: #edf7f8;

    --ue-texto: #233332;
    --ue-texto-suave: #667978;
    --ue-borda: rgba(0, 78, 76, .12);
    --ue-card: rgba(255, 255, 255, .92);
    --ue-shadow: 0 1.25rem 3.5rem rgba(0, 78, 76, .10);
    --ue-radius-xl: 2rem;
    --ue-radius-lg: 1.25rem;
}

html {
    scroll-behavior: smooth;
}

body#default_theme.contact {
    min-height: 100vh;
    margin: 0;
    background:
    radial-gradient(circle at top left, rgba(164, 216, 222, .34), transparent 30rem),
    radial-gradient(circle at 85% 18%, rgba(255, 229, 150, .34), transparent 26rem),
    linear-gradient(180deg, var(--ue-areia-20) 0%, var(--ue-menta-20) 48%, var(--ue-ciano-20) 100%);
    color: var(--ue-texto);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: var(--ue-verde);
}

a:hover {
    color: var(--ue-petroleo);
}

.precheckin-page {
    padding-bottom: 4rem;
}

.precheckin-hero {
    position: relative;
    background: var(--ue-areia-20);
    /* border-bottom: 1px solid rgba(0, 78, 76, .08); */
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-height: 390px;
    overflow: hidden;
    background: var(--ue-areia-40);
}

.hero-image-wrap img {
    display: block;
    width: 100%;
    height: clamp(220px, 32vw, 390px);
    object-fit: cover;
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
    margin-bottom: 1.25rem;
}

.hero-logo-wrap img {
    display: block;
    max-width: min(123px, 78vw);
    height: auto;
}

.hero-content-card {
    position: relative;
    z-index: 2;
    margin-top: -3.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: var(--ue-radius-xl);
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 1rem 3rem rgba(0, 78, 76, .09);
    backdrop-filter: blur(14px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .875rem;
    border-radius: 999px;
    background: var(--ue-lima-20);
    color: var(--ue-petroleo);
    border: 1px solid var(--ue-lima-60);
    font-size: .875rem;
    font-weight: 800;
}

.hero-badge::before {
    content: "";
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: var(--ue-verde);
}

.hero-title {
    margin: 1rem 0 .625rem;
    color: var(--ue-petroleo);
    /* font-size: clamp(2rem, 4.5vw, 3.7rem); */
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: -.045em;
}

.hero-subtitle {
    max-width: 760px;
    margin: 0;
    color: var(--ue-texto-suave);
    font-size: 1.06rem;
    line-height: 1.65;
}

.form-shell {
    margin-top: 2rem;
}

.form-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .92);
    border-radius: var(--ue-radius-xl);
    background: var(--ue-card);
    box-shadow: var(--ue-shadow);
}

.form-card-header {
    padding: 2rem 2rem 1.7rem;
    border-bottom: 1px solid var(--ue-borda);
    background:
    radial-gradient(circle at top right, rgba(205, 227, 187, .55), transparent 17rem),
    linear-gradient(135deg, rgba(251, 249, 247, .96), rgba(237, 247, 248, .95));
}

.form-card-header h2 {
    margin: 0;
    color: var(--ue-petroleo);
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    font-weight: 850;
    letter-spacing: -.035em;
}

.form-card-header p {
    max-width: 760px;
    margin: .65rem 0 0;
    color: var(--ue-texto-suave);
    line-height: 1.6;
    font-weight: 400;
}

.form-card-body {
    padding: .75rem 2rem 2.25rem;
}

.form-card .section-title {
    display: flex !important;
    align-items: center;
    gap: .75rem;
    width: 100%;
    margin: 2.25rem 0 1.2rem;
    padding: .85rem 1rem;
    clear: both;
    border: 1px solid rgba(0, 78, 76, .08);
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--ue-areia-20), var(--ue-menta-20));
    color: var(--ue-petroleo) !important;
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 850;
    text-align: left !important;
}

.form-card .section-title::before {
    content: "";
    flex: 0 0 auto;
    width: .7rem;
    height: 1.9rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--ue-verde-80), var(--ue-lima));
}

.form-card .section-title span {
    display: block;
}

.field {
    margin-bottom: 1.05rem;
}

.field label {
    display: block;
    /* margin-bottom: .45rem; */
    color: var(--ue-petroleo);
    font-size: .94rem;
    font-weight: 750;
}

.required-mark {
    color: var(--ue-laranja);
    font-weight: 850;
}

.field input,
.field select {
    width: 100%;
    min-height: 3.25rem;
    padding: .82rem .95rem;
    border: 1px solid var(--ue-borda);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .88);
    color: var(--ue-texto);
    font-size: 1rem;
    outline: none;
    box-shadow: 0 .35rem 1.15rem rgba(0, 78, 76, .03);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field input::placeholder {
    color: #94a3a1;
}

.field input:focus,
.field select:focus {
    border-color: var(--ue-verde-60);
    background: #fff;
    box-shadow: 0 0 0 .25rem rgba(102, 194, 160, .22);
}

.field input:disabled,
.field select:disabled {
    background: var(--ue-areia-40);
    color: #8a9b9a;
    cursor: not-allowed;
}


.submit-area {
    display: flex;
    justify-content: center;
    margin-top: 1.8rem;
}

.btn-submit {
    min-width: 14rem;
    min-height: 3.35rem;
    padding: .85rem 2rem;
    border: 0;
    border-radius: 999px;
    background: var(--ue-verde);
    color: #fff;
    font-size: 1rem;
    font-weight: 850;
    box-shadow: 0 1rem 2rem rgba(0, 153, 93, .22);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-submit:hover {
    background: #007f4f;
    transform: translateY(-2px);
    box-shadow: 0 1.2rem 2.4rem rgba(0, 153, 93, .28);
}

.btn-submit:active {
    transform: translateY(0);
}

.alert-modern {
    margin: 1.4rem 2rem 0;
    border: 1px solid rgba(244, 121, 32, .20);
    border-radius: 1.25rem;
    background: var(--ue-laranja-20);
    color: #8a3f0a;
}

.footer-modern {
    padding: 2.2rem 0;
    background: var(--ue-petroleo);
    color: var(--ue-areia-20);
}

.footer-modern .social_icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    padding: 0;
    margin: 0 0 1.1rem;
    list-style: none;
}

.footer-modern .social_icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: var(--ue-areia-20);
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}

.footer-modern .social_icon a:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
}

.footer-modern p,
.footer-modern a {
    color: var(--ue-areia-20);
}

@media (max-width: 767.98px) {
    .hero-content-card {
    margin-top: -2rem;
    padding: 1.25rem;
    border-radius: 1.5rem;
    }

    .form-card {
    border-radius: 1.5rem;
    }

    .form-card-header,
    .form-card-body {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    }

    .form-card .section-title {
    margin-top: 1.7rem;
    padding: .8rem .9rem;
    }

    .btn-submit {
    width: 100%;
    }
}