@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Poppins:wght@400;500;600;700;800&display=swap');
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(../img/Teatromania1.png) no-repeat center center fixed, linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 90%);
    background-size: cover;
    background-blend-mode: overlay;
    position: relative;
    overflow-y: auto;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.412);
    z-index: -1;
}

.container {
    max-width: 100%;
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

.service-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.membresia {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #000;
}

.card-content,
.card-content1-wrapper {
    margin-top: 20px;
}

.card-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #000;
    text-align: center;
    width: calc(50% - 20px);
    /* Ajusta el ancho de las tarjetas */
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: center;
}

.card i {
    font-size: 4rem;
    /* Tamaño grande del ícono */
    color: #DAA520;
    /* Color dorado viejo para el ícono */
    margin-bottom: 20px;
}

.card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #000;
    text-align: center;
}

.card p {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
    text-align: justify;
    /* Justifica el texto horizontalmente */
}

.card-content1-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.card-content1 {
    display: flex;
    justify-content: center;
}

.card-content1 .card {
    width: 100%;
    max-width: 600px;
    /* Ajusta el ancho máximo de la tarjeta */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    color: #f0cb10;
    /* Texto dorado oscuro */
    background-color: #a57c3b;
    /* Fondo dorado oscuro y opaco */
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    opacity: 0.9;
    /* Añade opacidad al botón */
}

.btn:hover {
    background-color: #f0cb10;
    /* Fondo dorado oscuro opaco */
    color: #a57c3b;
    /* Texto dorado más oscuro */
    opacity: 1;
    /* Opacidad completa en hover */
}

@media (max-width: 768px) {
    .card {
        width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .service-content {
        padding: 20px;
    }
    h2 {
        font-size: 2rem;
    }
    .card h2 {
        font-size: 1.5rem;
    }
    .card p {
        font-size: 1rem;
    }
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}