.container {
    display: flex;
    max-width: full;
    margin: auto;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

/* Columna izquierda */
.left {
    flex: 1;
    min-width: 700px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #03355c;
    /* azul elegante */
    color: white;
}

.pago-info {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pago-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #07cdff;
}

.pago-info a {
    color: #07cdff;
    text-decoration: none;
    font-weight: bold;
}

.pago-info a:hover {
    text-decoration: underline;
}

/* Columna derecha */
.right {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.right h2 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a2233;
}

.right p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a2233;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left {
        flex: 1 1 100%;
        height: 250px;
    }
}