/* ── Hero buttons ── */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background-color: #8E1126;
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase !important;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #550B14 !important;
    color: #ffffff !important;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 6px;
    border: 1.5px solid #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase !important;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
}

/* ── Proceso (home + personalízalo) ── */
.proceso {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
    position: relative;
    flex-wrap: wrap;
}

.proceso::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 16%;
    right: 16%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.paso {
    flex: 1;
    min-width: 250px;
}

.icono {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1.5px solid rgba(142, 17, 38, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    font-size: 30px;
}

.paso h3 {
    font-family: 'Beautique Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
}

.paso p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: #000000;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .proceso {
        flex-direction: column;
        gap: 40px;
    }
    .proceso::before {
        display: none;
    }
}

/* ── Lista checks ── */
.lista-checks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #282828;
    margin-bottom: 12px;
}

.lista-checks .check {
    color: #8E1126;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
/* -------------------------------------------------------------------------
   Contact Form 7 — mensajes de respuesta
   ------------------------------------------------------------------------- */
.wpcf7-response-output {
    display: block !important;
    padding: 16px 20px !important;
    margin-top: 24px !important;
    border-radius: 8px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: center !important;
    border-left: none !important;
}

.wpcf7-mail-sent-ok {
    background-color: #f0faf0 !important;
    border: 2px solid #4caf50 !important;
    color: #2e7d32 !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
    background-color: #fff5f5 !important;
    border: 2px solid #e53935 !important;
    color: #c62828 !important;
}