/* Estilos Generales */
* {
    font-family: 'Kanit', sans-serif;
}

body {
    background-color: #F4E1D2; /* Beige suave */
    color: #2E7D32; /* Verde bosque */
}

/* Nav Bar */
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

a:hover {
    color: #FFB300; /* Amarillo miel */
}

header {
    position: relative;
    padding: 0 2rem;
}

/* Header y Navbar */
.headernav {
    position: fixed;
    background-color: rgba(141, 198, 60, 0.9); /* Verde bosque */
    padding: 0 2rem;
    border-radius: 10px;
    top: 10px;
    right: 10px;
    left: 10px;
    z-index: 1000;
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
}

/* Menú */
.navbar .nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
}

.navbar .menu {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Botón Destacado */
.navbar .highlight {
    display: block;
    margin-left: 0;
    margin-right: 1rem;
}

.highlight {
    background-color: #81C784; /* Verde claro */
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.highlight:hover {
    transform: scale(1.05);
    background-color: #2E7D32; /* Verde oscuro */
    color: white;
}

.highlight:active {
    transform: scale(0.95);
}

/* Dropdowns */
.dropdown-center:hover .dropdown-menu,
.dropdown-menu.show {
    display: block;
    margin-top: 12px;
    background-color: #8D6E63; /* Marrón Tierra */
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover {
    background-color: #81C784; /* Verde claro */
    color: white;
}

/* Botones */
.btn-secondary {
    background-color: transparent !important;
    border-color: transparent !important;
    color: white;
}

.btn:hover {
    background-color: #81C784 !important;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar .nav ul {
        display: none;
    }

    .navbar .menu {
        display: flex;
    }

    .navbar .menu i {
        display: inline-block;
    }

    .navbar .highlight {
        display: none;
    }

    .esconder {
        display: none;
    }

    .navbar {
        flex-direction: row-reverse;
    }

    .headernav {
        top: 0;
        right: 0;
        left: 0;
        border-radius: 0px;
    }
}
