body {
    font-family:'Montserrat', sans-serif;
    max-width: auto;
    margin: 0px auto;
    padding: 10px 10px 10px 10px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    
    box-sizing: border-box;
}

.card {
    background-color: #0a0a0a;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    
}

h2 {
    color: #ffffff;
    border-bottom: 3px solid #fa5252;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}


h1{
    color: #ffffff;
    text-align: center;
    border-radius: 20px;
   

}

li{
    font-size: 19px;
    text-align: justify;
}

ul {
  list-style-type: disc; /* otras opciones: circle, square, none */
}



.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}



.social-icon img:hover {
    transform: scale(1.15); /* Efecto de zoom al pasar el mouse */
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}


.footer{
    text-align: center;
    font-size: 16px;

}

.footer-content container{
    padding-top: 100vw;
}

.footer-content {
    margin-top: 80px; /* Separación del contenido superior */
}










/* Tablets y pantallas medianas (1024px y menores) */
@media screen and (max-width: 1024px) {
    body {
        padding: 15px;
    }

    .card {
        padding: 25px;
        border-radius: 12px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    li {
        font-size: 17px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .footer h3 {
        font-size: 14px;
    }
}

/* Tablets pequeñas (769px y menores) */
@media screen and (max-width: 769px) {
    body {
        padding: 10px;
    }

    .card {
        padding: 20px;
        border-radius: 10px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    li {
        font-size: 16px;
        text-align: left; /* Mejor legibilidad en pantallas pequeñas */
    }

    ul {
        padding-left: 20px;
    }

    .social-icons {
        gap: 12px;
        margin-top: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .footer h3 {
        font-size: 12px;
        padding-bottom: 15px;
    }

    .footer-content {
        margin-top: 50px;
    }
}