/* RESET GENERAL */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* FONDO GENERAL */
body{
    background:#f4f6f9;
}

/* HEADER (logo + nombre) */
header{
    background:#0b3c5d;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    padding:20px;
}


header h1{
    color:#ff2b2b;      /* rojo */
    font-size:40px;     /* tamaño del título */
    letter-spacing:2px; /* separación de letras */
}

.logo{
    width:130px;
}

/* MENU */
nav{
    background:#06283D;
}

nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:25px;
    padding:15px;
    margin:0;          /* ⭐ ESTA LINEA FALTABA */
}

nav a{
    color:white;
    text-decoration:none;
    font-size:18px;
    padding:8px 15px;
    border-radius:5px;
    transition:0.3s;
}

nav a:hover{
    background:#00A8E8;
}

/* CONTENIDO */
.container{
    max-width:1000px;
    margin:40px auto;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
    text-align:center;
}

.container img{
    width:100%;
    border-radius:10px;
    margin-bottom:20px;
}

/* FOOTER */
footer{
    background:#0b3c5d;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

/* WHATSAPP */
.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    font-size:35px;
    text-decoration:none;
}

.pagos-grid{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.card-pago{
    width:280px;
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.card-pago img{
    width:120px;
    margin-bottom:15px;
}

.card-pago button{
    background:#00A8E8;
    color:white;
    border:none;
    padding:10px 15px;
    border-radius:5px;
    cursor:pointer;
}

form input{
    width:100%;
    padding:10px;
    margin:10px 0;
}


/* ===== PAGINA PAGOS ===== */

.pagos-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:30px;
}

.card-pago{
    width:280px;
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 0 15px rgba(0,0,0,0.1);
    text-align:center;
    transition:0.3s;
}

.card-pago:hover{
    transform:translateY(-8px);
}

.card-pago img{
    width:120px;
    margin-bottom:15px;
}

.card-pago button{
    background:#00A8E8;
    color:white;
    border:none;
    padding:12px 18px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
}

.card-pago button:hover{
    background:#0077b6;
}

/* FORMULARIO TARJETA */
form input{
    width:100%;
    padding:12px;
    margin:10px 0;
    border-radius:5px;
    border:1px solid #ccc;
}

form button{
    background:#0b3c5d;
    color:white;
    padding:12px;
    border:none;
    border-radius:6px;
    cursor:pointer;
}