.reserva-donde-quieras {
    background-color: #ececec; /* Ajusta el color de fondo según sea necesario */
    padding-top: 10%;
    padding-bottom: 10%;
}

.reserva-titulo {
    font-size: 48px;
    color: #0067b8;
    font-weight: 700;
    font-family: "Poppins";
}

.reserva-descripcion {
    font-size: 20px;
    color: #1e1e1e;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
    margin: 0 auto;
    width: 50%;
}

.redes-sociales {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}



.icono-red {
    width: 130px;
    height: 115px;
    padding: 10px; /* Ajusta el padding para que el contenido no se superponga con el borde */
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
    linear-gradient(#f7f7f7 0 0) padding-box, /*this is your grey background*/
    linear-gradient(to right,#4165e5, #2bb8fb) border-box; 
    
    border: 1px solid transparent;
    border-radius: 15px;
}


.icono-red img {
    max-width: 100%;
    max-height: 100%;
}

.special-icon {
    background-color: #fff;
    border-radius: 10px;
}

.special-icon img {
    max-width: 80%;
    max-height: 80%;
}


@media (max-width: 768px) {
    .redes-sociales {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        padding: 0 10px; /* Para asegurar un margen interno y que todo encaje correctamente */
    }
    
    .icono-red {
        flex: 0 1 25%; /* Ajusta la base para asegurar que siempre se distribuyan en tres */
        /* Ajusta el tamaño en vertical para asegurar que todos los íconos sean del mismo tamaño */
        height: 80px;
        text-align: center;
        margin-bottom: 15px;
        box-sizing: border-box; /* Para incluir padding y border en el tamaño total */
        padding: 5px; /* Espacio alrededor de cada ícono para ajustar los márgenes */
    }
    
    .icono-red img {
        width: auto;
        max-width: 70%;
        max-height: 70%;
        height: auto;
    }

    .reserva-descripcion {
        font-size: 14px;
        width: 90%;
    }
    
    .reserva-titulo {
        font-size: 27px;
        line-height: 29px;
        color: #0067b8;
        font-weight: 700;
        font-family: "Poppins";
        text-align: center;
    }
}
