* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Georgia', serif; 
    background-color: #82a9f9;    
    color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.barra-superior {
    width: 100%;
    height: 60px;
    background-color: #fffafb;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.boton-volver {
    width: 70px;
    height: 100%;
    background-color: #dbdbdb;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-right: 1px solid #c5c5c5;
}

.icono-flecha {
    width: 32px;
    height: 32px;
    fill: #000000;
}

.titulo-cabecera {
    flex-grow: 1;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #000000;
    padding-right: 70px; 
}


.contenido-contenedor {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center; 
    padding: 20px;
}

.opciones-pago {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}


.boton-pago {
    background-color: #fffafb; 
    color: #000000;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.35rem;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    width: 100%;
    transition: transform 0.2s, background-color 0.2s;
}

/*2. VISTA MOBILE (max-width: 767px)
   */
@media (max-width: 767px) {
    .opciones-pago {
        max-width: 270px; 
        gap: 45px;        
    }

    .boton-pago {
        height: 52px;
    }
}

/* 
   3. VISTA DESKTOP (min-width: 768px)
  */
@media (min-width: 768px) {
    .opciones-pago {
        max-width: 400px;
        background-color: rgba(255, 255, 255, 0.15); 
        padding: 60px 40px;
        border-radius: 20px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        gap: 30px; 
    }

    .boton-pago {
        height: 60px;
        border-radius: 4px;
    }

   
    .boton-pago:hover {
        background-color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    }

    .boton-volver:hover {
        background-color: #cdcdcd;
        transition: background-color 0.2s ease;
    }
}