/* ═══════════════════════════════════════════
   WEBINAR REGISTRATION — Estilos
   Paleta: verde #3d6b52, crema #f2ede4
   ═══════════════════════════════════════════ */

/* ── Info card ───────────────────────────── */
.wr-info {
    background: #f7f3ed;
    border-radius: 16px;
    padding: 36px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}
.wr-info::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3d6b52, #6a9e7f);
}
.wr-info__badge {
    display: inline-block;
    background: #3d6b52;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.wr-info__layout {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}
.wr-info__left {
    flex: 1 1 55%;
}
.wr-info__title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    color: #1f3d2d;
    line-height: 1.2;
    margin: 0 0 16px;
    text-transform: uppercase;
}
.wr-info__tagline {
    background: #fff;
    border: 1px solid #c8ddd0;
    border-radius: 10px;
    padding: 12px 16px;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.wr-info__leaf {
    margin-right: 6px;
}
.wr-info__topics {
    background: #eaf3ee;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
}
.wr-info__topics-title {
    font-size: 13px;
    font-weight: 800;
    color: #2d5a3d;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 12px;
}
.wr-info__topics-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wr-info__topics-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #c8ddd0;
    font-size: 14px;
    color: #444;
}
.wr-info__topics-list li:last-child {
    border-bottom: none;
}
.wr-info__topic-icon {
    font-size: 18px;
    flex-shrink: 0;
}
.wr-info__date-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #1f3d2d;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 12px;
}
.wr-info__date-icon {
    font-size: 28px;
    flex-shrink: 0;
}
.wr-info__date-big {
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}
.wr-info__date-meta {
    display: block;
    color: #9fc7b0;
    font-size: 12px;
    margin-top: 4px;
    letter-spacing: .5px;
}
.wr-info__price {
    font-size: 18px;
    font-weight: 700;
    color: #3d6b52;
    margin-top: 8px;
}

/* Ponentes */
.wr-info__speakers {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wr-info__speaker {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid #d4e9dc;
}
.wr-info__speaker-img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 3px solid #3d6b52;
}
.wr-info__speaker-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.wr-info__speaker-name {
    background: #3d6b52;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.wr-info__speaker-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ── Formulario ──────────────────────────── */
.wr-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    border-top: 5px solid #3d6b52;
}
.wr-form-wrap__title {
    font-size: 22px;
    color: #1f3d2d;
    margin: 0 0 8px;
    font-weight: 800;
}
.wr-form-wrap__subtitle {
    color: #666;
    font-size: 14px;
    margin: 0 0 24px;
    line-height: 1.6;
}
.wr-form__field {
    margin-bottom: 16px;
}
.wr-form__field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.wr-req { color: #e53e3e; }
.wr-form__field input[type="text"],
.wr-form__field input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #d4e9dc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color .2s;
    box-sizing: border-box;
    background: #f7faf8;
}
.wr-form__field input:focus {
    border-color: #3d6b52;
    outline: none;
    background: #fff;
}
.wr-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: #3d6b52;
    color: #fff;
    border: 2px solid #3d6b52;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    text-align: center;
    text-decoration: none;
    transition: background .2s, transform .1s;
}
.wr-btn:hover    { background: #2d5140; border-color: #2d5140; color: #fff; }
.wr-btn:active   { transform: scale(.98); }
.wr-btn:disabled { background: #8ab5a0; border-color: #8ab5a0; cursor: not-allowed; }
.wr-btn--outline {
    background: transparent;
    color: #3d6b52;
    width: auto;
    margin-top: 20px;
}
.wr-btn--outline:hover { background: #3d6b52; color: #fff; }
.wr-form-wrap__secure {
    color: #999;
    font-size: 12px;
    text-align: center;
    margin: 12px 0 0;
}

/* ── Alerts ──────────────────────────────── */
.wr-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}
.wr-alert--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
}

/* ── Status pages (success / cancel) ────── */
.wr-status {
    text-align: center;
    padding: 48px 32px;
    border-radius: 16px;
    max-width: 560px;
    margin: 0 auto;
}
.wr-status--success {
    background: #f0fdf4;
    border: 1px solid #86efac;
}
.wr-status--cancel {
    background: #fff7ed;
    border: 1px solid #fdba74;
}
.wr-status__icon {
    font-size: 64px;
    margin-bottom: 16px;
    display: block;
}
.wr-status__title {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 12px;
}
.wr-status--success .wr-status__title { color: #15803d; }
.wr-status--cancel  .wr-status__title { color: #c2410c; }
.wr-status__greeting { color: #444; font-size: 16px; margin-bottom: 20px; }
.wr-status__box {
    background: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    text-align: left;
    margin: 0 auto 20px;
    max-width: 420px;
    line-height: 1.9;
    font-size: 14px;
    color: #333;
    border: 1px solid #d4e9dc;
}
.wr-status__box p { margin: 0; }
.wr-status__note {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto;
}
.wr-msg--error { color: #dc2626; font-weight: 600; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 680px) {
    .wr-info__layout {
        flex-direction: column;
    }
    .wr-info__speakers {
        flex-direction: row;
        flex: unset;
        width: 100%;
    }
    .wr-info__speaker {
        flex: 1;
    }
    .wr-info {
        padding: 24px 20px;
    }
    .wr-form-wrap {
        padding: 24px 20px;
    }
}
@media (max-width: 480px) {
    .wr-info__speakers {
        flex-direction: column;
    }
}
