
@media (min-width: 768px) {

    .section2 {
        background-color: #f1f1f1;
        width: auto;
        padding: 20px;
        text-align: left;
    }
    
    .section2 .grid-container {
        display: grid;
        grid-template-columns: repeat(6, 1fr); /* Cambiamos de 2 a 5 columnas */
        gap: 20px;
        width: 100%; /* Ancho completo */
        font-family: "Roboto", sans-serif;
    }
    
    
    
    .section2 .column {
        background-color: #f1f1f1;
        padding: 20px;
        text-align: left;
    }
    
    .section2 h2 {
        margin-bottom: 10px;
        color: darkgray; /* Cambia "darkgray" al color gris oscuro deseado */
    
    }
    
    
   
 
    
    }
    
    .section3 {
        background-color: #333;
        color: white;
    }
    
    .footer {
        padding: 20px;
        text-align: center;
    }
    
    .section2 .no-bullets {
        list-style-type: none;
        padding-left: 0;
    }
    
    .section2 .no-bullets li {
        margin-bottom: 5px;
    }
    
    .section2 .no-bullets li a {
        text-decoration: none;
        text-align: left; /* Alinear el texto a la izquierda */
    }


    #ubicacion-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        border: 1px solid #ccc;
        border-top: none;
        max-height: 200px;
        overflow-y: auto;
        padding: 5px;
        color: #000;
        text-align: left;
        list-style: none;
        font-size: inherit;
        max-width: 600px; /* Limita el ancho máximo de las opciones */
        width: 100%; /* Ocupa el ancho completo */
        margin: 0 auto; /* Centra horizontalmente */
        display: none;
    }
    
    #ubicacion-options div {
        padding: 5px;
        cursor: pointer;
        width: 100%; /* Ocupa el ancho completo del contenedor */
        box-sizing: border-box; /* Incluye el padding en el ancho total */
    }
    
    #ubicacion-options div:hover {
        background-color: #f0f0f0;
    }
    
    #ubicacion-options div.selected {
        background-color: #000;
        color: #fff;
    }
    
    .container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    #input-box {
        display: flex;
        align-items: center;
        justify-content: center; /* Centrar horizontalmente */
        position: relative;
    }
    
    #input-box input {
        flex-grow: 1;
        border: none;
        padding: 5px;
        outline: none;
        font-size: 16px;
        height: 40px;
        max-width: 600px; /* Ajusta el valor según tus necesidades */
    }
    
    
    #input-box span {
        cursor: pointer;
        color: #fff; /* Cambia el color del ícono a blanco */
        background-color: #485879; /* Agrega un fondo de color al ícono */
        font-size: 18px; /* Ajusta el tamaño de fuente según tus necesidades */
       
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
       
        line-height: 1; /* Alineación vertical precisa */
        height: 100%; /* Para que el ícono ocupe toda la altura del contenedor */
        padding: 8px; /* Añade un poco de espacio alrededor del ícono */
       
    }

    .search-icon-container {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .search-icon-container span {
        cursor: pointer;
        color: #485879;
    }

