@font-face {
    font-family: 'MiFuente'; /* Nombre personalizado para usar en tu CSS */
    src: url('/LEMONMILK/LEMONMILK-Bold.otf') format('opentype');
    font-weight: normal; /* Puedes ajustar según el peso de la fuente */
    font-style: normal; /* Puedes cambiar a 'italic' si la fuente lo soporta */
}
@font-face {
    font-family: 'MiFuenteLigth'; /* Nombre personalizado para usar en tu CSS */
    src: url('/LEMONMILK/LEMONMILK-Light.otf') format('opentype');
    font-weight: normal; /* Puedes ajustar según el peso de la fuente */
    font-style: normal; /* Puedes cambiar a 'italic' si la fuente lo soporta */
}
body {
    
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
body {
    background-image: url("./img/fondo1.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: MiFuenteLigth;
}
a{
    margin-top: 45px;
    display: flex;
    justify-content: center;
    background-color: #00FFFF;
    width: 50%;
    height: 54PX;
    color: rgb(255, 255, 255);
    align-items: center;
    font-family: "Mifuente";
}
a:hover{
    color: #222430;
}
header {
    background-color: #222;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

h1 {
    margin: 0;
}

main {
    
    margin: 50px;
    padding: 20px;
    background: #1a1919b2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    color: #e3e3e3;
}

.socios, .plan-familiar, .ajuste-cuotas {
    margin-bottom: 30px;
    color: #e3e3e3;
}

.socio, .plan-familiar, .ajuste-cuotas {
    background: #000000;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #e3e3e3;
}
.socio{
    background: #000000;
    
}
h2 {
    color: #e3e3e3;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

ul {
    list-style-type: none;
    padding: 0;
    background: #000000;
}

ul li {
    background: url('check-icon.png') left center no-repeat;
    background-size: 16px;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #e3e3e3;
    
    
}

@media (max-width: 600px) {
    main {
        padding: 15px;
    }
    h1 {
        font-size: 22px;
    }
    h2 {
        font-size: 18px;
    }
    p {
        font-size: 14px;
    }
    main{
        margin: 20px;
    }
}
@media (min-width: 1250px) {
    .socios {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .socio {
        margin-bottom: 0;
    }
  
 
}