/* /css/style.css */

/* --- ESTILOS GENERALES Y DE MARCA (Para todo el sitio) --- */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: linear-gradient(180deg, #EAE4F4 0%, #D8D2E5 100%);
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 800px; /* Ancho base para páginas de texto */
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .container {
        padding: 25px;
    }
}

.logo {
    max-width: 120px;
    margin-bottom: 25px;
}

h1 {
    color: #2c2c54;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
}

h2 {
    color: #40407a;
    font-weight: 600;
    font-size: 22px;
    margin-top: 40px;
    border-bottom: 2px solid #EAE4F4;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

p, li {
    line-height: 1.7;
    text-align: left;
    font-size: 16px;
}

ul {
    padding-left: 25px;
}

a {
    color: #593bdb;
    font-weight: 600;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

/* --- ESTILOS ESPECÍFICOS PARA LA PÁGINA DE PAGO --- */
.payment-container {
    max-width: 500px; /* Hacemos la tarjeta de pago más compacta */
}

.payment-container h1 {
    font-size: 24px;
    border-bottom: none; /* Quitamos el borde para este título */
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.plan-card {
    border: 2px solid #EAE4F4;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.plan-card .precio {
    font-size: 2.8em;
    font-weight: 700;
    color: #2c2c54;
    margin: 10px 0;
}

.plan-card .periodo {
    font-size: 0.5em;
    color: #666;
    font-weight: 400;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.plan-card ul li {
    padding: 8px 0;
    font-size: 15px;
    text-align: center;
}

#metodos-pago h3 {
    font-size: 18px;
    color: #40407a;
    margin-bottom: 20px;
    font-weight: 600;
}

.payment-buttons button {
    width: 100%;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.payment-buttons button:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

#btn-pagoefectivo {
    background-color: #ff5722;
    color: white;
}

#btn-yape {
    background: linear-gradient(135deg, #7d4099, #593bdb);
    color: white;
}

#confianza p {
    font-size: 12px;
    color: #888;
    margin-top: 30px;
    text-align: center;
}