.logo-box {
    width: 180px;
    height: 120px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 4px rgba(0,0,0,0.05);
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-hover {
    transition: all 0.3s ease-in-out;
}

.logo-hover:hover {
    transform: scale(1.05);
}

.card-hover {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.title-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-zoom-hover {
    transition: transform 0.3s ease;
    padding-top: 10px;
    padding-bottom: 10px;
}

.title-zoom-hover:hover {
    transform: scale(1.05);
}

.language-selector {
    position: relative;
    display: inline-block;
}

#lang-menu {
    position: absolute;
    top: 30px;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.hidden {
    display: none;
}

#lang-menu li {
    padding: 8px 12px;
    cursor: pointer;
}

#lang-menu li:hover {
    background-color: #f0f0f0;
}

flag-opacity {
}

position: sticky;
top: 0;
z-index: 1000;
background-color: white;

/* o el color que tenga tu header */
 {
}

/* .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #f4f4f4;
} */
.dropdown-toggle::after {
    content: none !important;
    display: none !important;
}

.w-85 {
    width: 85% !important;
}

