* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f4f7fc;
    color: #1a202c;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.landing-wrapper {
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header & Logos */
.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.logo-viplounges {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 800;
    color: #2b4c7e;
    letter-spacing: -0.5px;
}
.logo-viplounges img {
    max-width: 50px;
}

.plus-sign {
    font-size: 22px;
    color: #a0aec0;
    font-weight: 400;
}

.logo-iftm {
    font-size: 32px;
    font-weight: 800;
    color: #e54d60;
    letter-spacing: -1px;
}

.pill-badge {
    background-color: #536273;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
}
.lang-switch {
    margin-top: 4px;
}
.lang-switch select {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #1e3a8a;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231e3a8a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 10px center;
    border: 1.5px solid #e0ebff;
    border-radius: 50px;
    padding: 6px 32px 6px 14px;
    cursor: pointer;
}
.screen-reader {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

/* Main Card */
.main-card {
    background: #ffffff;
    width: 100%;
    border-radius: 28px;
    padding: 42px 36px;
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.05);
}

.card-title {
    font-size: 30px;
    font-weight: 800;
    color: #0b192c;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.card-subtitle {
    font-size: 15px;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Sub-caja azul con la fecha */
.date-box {
    background-color: #f5f8ff;
    border: 1.5px solid #e0ebff;
    border-radius: 20px;
    padding: 22px 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 30px;
}

.date-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #8fa0b5;
    text-transform: uppercase;
}

.date-value {
    font-size: 20px;
    font-weight: 800;
    color: #1e3a8a;
}

/* Enlace inferior tarjeta */
.card-link-text {
    font-size: 14px;
    color: #64748b;
}

.card-link-text a {
    color: #1e3a8a;
    font-weight: 700;
    text-decoration: underline;
}

/* Footer fuera de tarjeta */
.page-footer {
    margin-top: 32px;
    font-size: 13px;
    color: #a0aec0;
}

.page-footer a {
    color: #a0aec0;
    text-decoration: underline;
}

/* Lead form (IFTM) */
.lead-form {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lead-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0b192c;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
    width: 100%;
    border: 1.5px solid #e0ebff;
    border-radius: 12px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    color: #1a202c;
    background: #f8fbff;
}

.lead-form input:focus {
    outline: none;
    border-color: #1e3a8a;
    background: #ffffff;
}

.field-hint {
    font-size: 12px;
    font-weight: 400;
    color: #8fa0b5;
}

.privacy-check {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px !important;
    font-weight: 400 !important;
    color: #64748b !important;
    font-size: 13px !important;
    line-height: 1.45;
}

.privacy-check input {
    margin-top: 3px;
    flex-shrink: 0;
}

.privacy-check a {
    color: #1e3a8a;
    font-weight: 700;
}

.lead-submit {
    width: 100%;
    border: 0;
    border-radius: 50px;
    padding: 14px 20px;
    background: #1e3a8a;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    cursor: pointer;
}

.lead-submit:hover {
    opacity: 0.9;
}

.form-error {
    background: #fff1f2;
    color: #be123c;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: left;
}

.honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}