
   

/* ----- Sección Membresía ----- */
.membresia {
    background-color: #0097A7;
    color: white;
    text-align: center;
    padding: 2px 20px;
}

/* 🔹 Encabezado (Texto introductorio con ancho del contenedor) */
.membresia-header {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.membresia-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #34c3d6;
    padding: 20px;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 10px;
    max-width: 1000px;
}

.membresia-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    margin-top: 10px;
    line-height: 30px;
}

/* ✅ Ahora el fondo celeste solo cubre el título */
.titulo-container {
    background-color: #34c3d6;
    padding: 20px;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 10px;
    max-width: 1000px;
}

.titulo-container h3 {
    font-family: 'Roboto', serif;
    font-size: 30px;
    font-weight: bold;
    color: white;
}

/* 🔹 Contenedor de los beneficios */
.ventajas-container {
    max-width: 1000px;
    margin: 40px auto;
    color: black;
}

.ventajas-container p{
    color: white;
    font-weight: bold;
}

/* 🔹 Beneficio individual */
.beneficio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Texto del beneficio */
.beneficio-texto {
    flex: 1;
    padding-right: 20px;
    text-align: left;
}

.beneficio h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.beneficio p {
    font-size: 16px;
    margin-bottom: 20px;
    
}

/* ✅ Imágenes alineadas a la derecha con el mismo tamaño */
.beneficio-img {
    width: 500px; /* ✅ Define un ancho fijo */
    height: 200px; /* ✅ Define una altura fija para uniformidad */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficio-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover; /* ✅ Recorta sin distorsionar */
}


/* Responsivo */
@media screen and (max-width: 1024px) {
    .beneficio {
        flex-direction: column;
        text-align: center;
    }

    .beneficio-texto {
        text-align: center;
        padding: 0;
    }

    .beneficio-img {
        width: 100%;
        max-width: 300px;
        margin-top: 15px;
    }
}


/* ✅ Sección Membresía Oro */
.membresia-oro {
    background-color: #0097A7;
    color: white;
    text-align: center;
    padding: 0 20px;
}

/* ✅ Título con fondo celeste */
.titulo-membresia {
    background-color: #4DD0E1;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    border-radius: 10px;
}

.titulo-membresia h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: bold;
    color: white;
}

/* ✅ Contenedor de opciones */
.opciones-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* ✅ Tarjetas de opciones */
.opcion {
    background-color: #4DD0E1;
    padding: 40px;
    width: 280px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ✅ Encabezado de cada opción */
.opcion-header {
    background-color: white;
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
}

/* ✅ Precio */
.precio {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

/* ✅ Detalles en cursiva */
.detalle {
    font-size: 16px;
    font-style: italic;
}

/* ✅ Responsivo */
@media screen and (max-width: 768px) {
    .opciones-container {
        flex-direction: column;
        align-items: center;
    }

    .opcion {
        width: 90%;
        max-width: 300px;
    }
}


/* ✅ Sección Formas de Pago */
.formas-pago {
    background-color: #0097A7;
    text-align: center;
    padding: 60px 20px;
}

/* ✅ Título con fondo celeste */
.titulo-formas-pago {
    background-color: #4DD0E1;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    border-radius: 10px;
}

.titulo-formas-pago h3 {
    font-family: 'Roboto', serif;
    font-size: 32px;
    font-weight: bold;
    color: white;
}

/* ✅ Contenedor de métodos de pago */
.metodos-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* ✅ Tarjetas de cada método de pago */
.metodo {
    text-align: center;
    width: 200px;
}

/* ✅ Imagenes de pago */
.metodo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* ✅ Nombre del método */
.metodo h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    color: white;
}

/* ✅ Número de Bizum */
.numero {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

/* ✅ Información adicional */
.info-extra {
    font-size: 16px;
    color: white;
    margin: 5px 0 10px;
}

/* ✅ Botón de "Aquí" */
.boton {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: #34c3d6;
    color: white;
    text-decoration: none;
    border-radius: 20px;
}

.boton:hover {
    color: black;
}

/* ✅ Responsivo */
@media screen and (max-width: 768px) {
    .metodos-container {
        flex-direction: column;
        align-items: center;
    }
}