body {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

/* ---------- variables ---------- */
:root {
    --burdeos: #3B0000;
    --dor-osc: #651c32;
    --gold1: #e4be7f;
    --gold2: #d39b57;
}

/* ---------- barra ---------- */
.navbar-cecyte .nav-item {
    position: relative;
}

.navbar-cecyte {
    background-size: cover;
    border: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index:1000;
}

.navbar-cecyte .navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-cecyte .nav-link {
    color: #fffefe !important;
    padding: .75rem 1.25rem;
    position: relative;
    font-weight: 500;
}

/* ---------- Flechas ---------- */
.icono-flecha {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.nav-link:hover .icono-flecha {
    transform: translateY(3px);
}

/* ---------- dropdown ---------- */
.navbar-cecyte .dropdown-menu {
    border: none;
    padding: 0;
    min-width: 260px;
    animation: fade .25s ease-out;
}



@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(5px)
    }

    to {
        opacity: 1
    }
}

.navbar-cecyte .dropdown-item {
    padding: .55rem 1rem;
    color: #4a1627;
    font-weight: 600;
}

.navbar-cecyte .dropdown-item:nth-child(odd) {
    background: var(--gold1);
}

.navbar-cecyte .dropdown-item:nth-child(even) {
    background: var(--gold2);
}

.navbar-cecyte .dropdown-item:hover {
    background: var(--burdeos);
    color: var(--dor-osc);
}

/* ---------- logo ---------- */
.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* ---------- hamburguesa ---------- */
.navbar-toggler {
    border-color: var(--dor-osc);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,\%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b9975b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #f65628ff;
    border-radius: 20px;
    /* Bordes redondeados */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 5px 15px;
    width: 250px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 12px;
    padding: 6px;
}

.search-button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s;
}

.search-button:hover {
    transform: scale(1.2);
    /* Efecto al pasar el mouse */
}

/* estilos del mensaje */
.mensajeAviso{
    color: #ffff;
    background-color: black;
    position: fixed;
    z-index:999;
    top: 70px;
    width: 100%;
    text-align: center;
    padding: 5px;
}