body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f9;
    color: #454545;
    padding: 20px;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 10px 30px 30px 30px; /* Reducimos aún más el espacio superior de la tarjeta blanca a 10px */
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ========================================= */
/* ESTILOS DEL LOGOTIPO (CERO AIRE)          */
/* ========================================= */
.logo-container {
    text-align: center;
    /* Usamos márgenes negativos para forzar que los elementos se acerquen */
    margin-top: -10px; /* Jala el logo hacia el borde superior */
    margin-bottom: -15px; /* Jala el título fuertemente hacia el logo */
}
.logo-img {
    max-width: 60%; /* Lo hice un poquito más sutil (60%) */
    height: auto;
}
/* ========================================= */

/* Le quitamos el margen invisible que el navegador le pone al h1 */
h1 { 
    font-size: 1.5rem; 
    color: #454545; 
    margin-top: 0px; 
}

.title-pink { color: #E91E63; font-size: 2rem; margin-bottom: 5px; }
.title-dark { color: #454545; font-size: 1.5rem; }

/* Estilos de la tarjeta de pago */
.payment-info {
    background-color: #fff;
    border: 2px solid #E91E63;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
}

.payment-info h3 {
    margin-top: 0;
    color: #E91E63;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 2px solid #fce4ec;
    padding-bottom: 10px;
}

.bank-details p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.highlight {
    color: #E91E63;
    font-weight: 800;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.payment-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 15px;
    background: #fff3f6;
    padding: 10px;
    border-radius: 5px;
}

/* Estilos del formulario */
input[type="text"], input[type="tel"], input[type="url"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.file-upload {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff3f6;
    border-radius: 8px;
    border: 1px dashed #E91E63;
}

/* Botones */
button {
    width: 100%;
    padding: 15px;
    color: white;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(to right, #FF9800, #E91E63); 
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

button:hover { opacity: 0.9; transform: translateY(-2px); }
button:disabled { background: #ccc; cursor: not-allowed; box-shadow: none; transform: none; }

.btn-secondary {
    background: #454545;
    box-shadow: 0 4px 10px rgba(69, 69, 69, 0.3);
}
.btn-secondary:hover {
    background: #2a2a2a;
}