.rep2-hero {
    min-height: auto !important;
    padding: 110px 0 80px !important;
}
.rep2-hero .subtitle {
    margin-bottom: 0 !important;
}
.rep2-hero h1 {
    margin-bottom: 14px !important;
}
.elim-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e94560 0%, #c1305a 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 28px;
    box-shadow: 0 10px 28px rgba(233,69,96,0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    letter-spacing: 0.2px;
}
.elim-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(233,69,96,0.45);
}
.elim-form-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 50%, #e94560 130%);
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}
.elim-form-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(233,69,96,0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.elim-form-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(233,69,96,0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.elim-form-section .container {
    max-width: 640px;
    position: relative;
    z-index: 2;
}
.elim-hero-form {
    background: white;
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    position: relative;
}
.elim-hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e94560 0%, #c1305a 50%, #e94560 100%);
    z-index: 3;
}
.elim-form-header {
    background: white;
    padding: 22px 30px 14px;
    color: #1a1a2e;
    position: relative;
    text-align: center;
}
.elim-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(233,69,96,0.10);
    color: #e94560;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}
.elim-form-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #e94560;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(233,69,96,0.20);
}
.elim-form-intro {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.4;
    margin: 0 0 6px;
    font-weight: 500;
}
.elim-form-title {
    font-size: 2.1rem;
    color: #1a1a2e;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.1;
    margin: 0 0 4px;
}
.elim-form-title .accent {
    color: #e94560;
}
.elim-form-sub {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0 0 8px;
}
.elim-form-sub::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #c1305a);
    border-radius: 2px;
    margin: 8px auto 0;
}
.elim-hero-form > form {
    padding: 0 28px 24px;
    background: white;
}
.elim-fg label::after {
    content: '';
}
.elim-fg > label {
    color: #1a1a2e;
}

.elim-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.elim-fg { margin-bottom: 12px; }
.elim-fg > label {
    display: block;
    font-size: 0.78rem;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 5px;
}
.elim-fg input[type="text"],
.elim-fg input[type="email"],
.elim-fg input[type="tel"],
.elim-fg select,
.elim-fg textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #ececf2;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    background: #fafbff;
    color: #1a1a2e;
    transition: all 0.25s ease;
    box-sizing: border-box;
    outline: none;
}
.elim-fg input::placeholder,
.elim-fg textarea::placeholder { color: #bbb; }
.elim-fg input:focus,
.elim-fg select:focus,
.elim-fg textarea:focus {
    border-color: #e94560;
    background: white;
    box-shadow: 0 0 0 4px rgba(233,69,96,0.10);
}
.elim-fg textarea { resize: vertical; min-height: 60px; }

.elim-toggle-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 2px;
}
.elim-toggle { position: relative; cursor: pointer; margin: 0; }
.elim-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.elim-toggle span {
    display: block;
    text-align: center;
    padding: 9px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a2e;
    background: white;
    transition: all 0.25s ease;
    user-select: none;
}
.elim-toggle:hover span { border-color: #c8c8c8; }
.elim-toggle input:checked + span {
    background: #e94560;
    border-color: #e94560;
    color: white;
    box-shadow: 0 4px 12px rgba(233,69,96,0.25);
}

.elim-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    margin-bottom: 18px;
}
.elim-checkbox input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #e94560;
    flex-shrink: 0;
}
.elim-checkbox label {
    margin: 0;
    font-size: 0.75rem;
    color: #888;
    font-weight: 400;
    line-height: 1.45;
}
.elim-checkbox a { color: #e94560; text-decoration: none; }

.elim-submit {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, #e94560 0%, #c1305a 100%);
    color: white;
    border: none;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(233,69,96,0.28);
}
.elim-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(233,69,96,0.45);
}

@media (max-width: 768px) {
    .elim-form-header { padding: 26px 22px 22px; }
    .elim-hero-form > form { padding: 28px 22px 30px; }
    .elim-form-title { font-size: 1.65rem; }
    .elim-grid-2 { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   Variante con foto del experto a la izquierda del formulario
   ============================================================ */
.elim-form-section--with-expert .container {
    max-width: 1180px;
}
.elim-form-expert-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}
.elim-form-expert-row .elim-hero-form {
    width: 100%;
}
.elim-form-expert-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}
.elim-form-expert-title {
    margin: 0 0 16px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}
.elim-form-expert-photo {
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    display: block;
}
.elim-form-expert-text {
    margin: 16px 0 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
    max-width: 420px;
}

@media (max-width: 900px) {
    .elim-form-expert-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .elim-form-expert-col {
        order: -1;
    }
    .elim-form-expert-photo {
        max-width: 280px;
    }
    .elim-form-expert-title {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   BLOQUE "Habla con un experto" / "Agenda consulta gratuita"
   ========================================================================== */
.elim-expert-block {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    flex-wrap: wrap;
}
.elim-expert-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.elim-expert-label {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}
.elim-expert-label strong {
    color: #ffffff;
    font-weight: 700;
}
.elim-expert-or {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-style: italic;
    padding: 0 4px;
    align-self: flex-end;
    margin-bottom: 14px;
}
.elim-expert-phone svg path { stroke: #ffffff !important; }
.elim-expert-phone {
    display: inline-flex;
    align-items: center;
    background: #e94560;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.02rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #e94560;
    box-shadow: 0 6px 18px rgba(233,69,96,0.35);
    transition: all 0.25s ease;
}
.elim-expert-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(233,69,96,0.5);
    background: #ff5773;
    border-color: #ff5773;
}
.elim-expert-book {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #e94560;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 18px rgba(255,255,255,0.18);
    transition: all 0.25s ease;
}
.elim-expert-book:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,255,255,0.25);
}

@media (max-width: 600px) {
    .elim-expert-block { flex-direction: column; align-items: flex-start; gap: 18px; }
    .elim-expert-or { align-self: flex-start; margin: 0; }
}

/* Etiqueta del CTA principal (fuera del botón) */
.elim-cta-row {
    display: flex;
    align-items: flex-end;
    gap: 110px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.elim-cta-row .elim-cta-btn {
    min-width: 230px;
    text-align: center;
    justify-content: center;
}
.elim-cta-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.elim-cta-btn-outline {
    background: #ffffff !important;
    color: #e94560 !important;
    border: 2px solid #e94560 !important;
    box-shadow: 0 6px 18px rgba(233,69,96,0.18) !important;
}
.elim-cta-btn-outline:hover {
    background: #e94560 !important;
    color: #ffffff !important;
}
.elim-cta-wrap .elim-cta-btn {
    margin-top: 2px;
}
.elim-cta-label {
    margin: 0;
    color: #000000;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-align: center;
}

/* Botón de llamada flotante en esquina superior derecha */
.elim-floating-call {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    background: #e94560;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(233,69,96,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.elim-floating-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(233,69,96,0.55);
    background: #ff5773;
}
@media (max-width: 768px) {
    .elim-floating-call {
        top: auto;
        bottom: 96px;
        right: 16px;
        padding: 10px 18px;
        font-size: 0.92rem;
    }
}

/* Sección "¿Necesitas ayuda?" */
.elim-help-section {
    padding: 70px 0;
    background: #ffffff;
}
.elim-help-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    text-align: center;
    background: #fff5f6;
    border: 1px solid rgba(233,69,96,0.15);
    border-radius: 18px;
    padding: 50px 48px;
    box-shadow: 0 10px 30px rgba(26,26,46,0.06);
}
.elim-help-text {
    text-align: center;
}
.elim-help-text h2 {
    margin: 0 0 10px;
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
}
.elim-help-text p {
    margin: 0 auto;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 560px;
}
.elim-help-actions {
    margin-top: 0 !important;
    gap: 80px;
    justify-content: center;
}
@media (max-width: 900px) {
    .elim-help-inner { padding: 32px 26px; }
    .elim-help-actions { gap: 28px; }
    .elim-help-text h2 { font-size: 1.7rem; }
}

/* Frase de expertos entre subtítulo y botones del hero */
.elim-experts-line {
    margin: 18px 0 0;
    color: #1a1a2e;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.5;
    max-width: 720px;
}
