/* =========================
   BOTONES DE PAGO
========================= */

.btn-izipay,
.btn-culqi {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all .25s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.btn-izipay:hover,
.btn-culqi:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

/* =========================
   CONTENIDO INTERNO
========================= */

.izipay-content,
.culqi-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.izipay-logo,
.culqi-logo {
    width: 90px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.izipay-text,
.culqi-text {
    text-align: left;
}

.izipay-text h3,
.culqi-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.izipay-text span,
.culqi-text span {
    display: block;
    margin-top: 3px;
    font-size: 14px;
}



/* =========================
   CULQI
========================= */

.btn-culqi {
    border-left: 6px solid #7C3AED;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8f5ff 100%
    );
}

.culqi-text h3 {
    color: #7C3AED;
}

.culqi-text span {
    color: #4d4d4d;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 576px) {

    .izipay-logo,
    .culqi-logo {
        width: 70px;
        height: 40px;
    }

    .izipay-text h3,
    .culqi-text h3 {
        font-size: 16px;
    }

    .izipay-text span,
    .culqi-text span {
        font-size: 13px;
    }
}