html, body {
            height: 100%;
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
        }
        .lang-menu {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 100;
            background: rgba(255, 255, 255, 0.8); /* Fondo blanco semitransparente */
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .lang-menu a {
            text-decoration: none;
            color: #333;
            margin: 0 5px;
            font-weight: 600;
        }
        .lang-menu a:hover {
            color: #007BFF; /* Cambia a un azul o el color que prefieras */
            text-decoration: underline;
        }
        .container-fluid {
            height: 100%;
        }
        .container-fluid, .row {
            padding: 0;
            margin: 0;
        }
        .row.full-height {
            height: 100%;
        }
        .button {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-transform: uppercase;
            font-size: 1.5rem;
            font-weight: 600;
            text-decoration: none;
            color: white;
            height: 33.33%; /* Cada botón ocupa 1/3 del alto */
            text-align: center;
            padding: 60px;
        }
        .button-container {
            margin: 0 10px; /* Margen lateral en móvil */
        }
        .button-1 {
            background-color: #E58F00;
        }
        .button-2 {
            background-color: #617EDC;
        }
        .button-3 {
            background-color: #002E4D; /* Azul oscuro base */
        }
        .button img {
            max-height: 200px; /* Limitar la altura máxima de las imágenes */
            width: auto; /* Mantener proporciones */
            object-fit: contain; /* Ajustar contenido sin distorsión */
        }
        .button:hover {
            opacity: 1;
            transform: scale(1.05);
            transition: all 0.3s ease-in-out;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
            z-index: 10; /* Para asegurar que se muestre encima de otros botones */
        }
        .button p {
            display: none; /* Texto oculto por defecto */
            margin: 10px auto;
            font-size: 1rem;
            color: white;
            text-align: center;
            min-height: 60px; /* Altura mínima para mantener consistencia */
            align-items: center; /* Alinea el texto verticalmente */
            justify-content: center;
        }
        @media (min-width: 768px) {
            .button {
                height: 100%; /* En pantallas grandes, cada botón ocupa toda la altura */
            }
            .button-container {
                margin: 0 15px; /* Aumentar margen lateral en escritorio */
            }
            .col-md-4 {
                height: 100%;
            }
            .button img {
                width: 200px; /* Ancho fijo en escritorio */
                height: 200px; /* Alto fijo en escritorio */
                object-fit: contain; /* Ajustar contenido sin distorsión */
                margin-bottom: 15px;
            }
            .button p {
                display: block; /* Mostrar texto descriptivo en pantallas grandes */
            }
        }
        @media (max-width: 767px) {
            .button img {
                width: 80%;
                max-width: 200px; /* Limita el tamaño máximo de las imágenes */
            }
        }