/* NAVBAR */
.custom-navbar {
    background: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #efefef;
    font-family: "Museo", sans-serif !important;
}

/* NAV LINKS (esto quita el look Bootstrap feo) */
.custom-navbar .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 400;
    margin: 0 18px;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    background: transparent;
}

.custom-navbar .navbar-nav .nav-link:hover {
    background: transparent;
    color: #8b1e2d;
}

/* DROPDOWN (muy importante para quitar estilo Bootstrap) */
.custom-navbar .dropdown-menu {
    background-color: white !important;
    border: none;
    border-radius: 4px;
    margin-top: 15px;
    padding: 10px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.custom-navbar .dropdown-item {
    background: transparent !important;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    padding: 8px 20px;
    transition: background 0.2s;
}

.custom-navbar .dropdown-item:hover {
    background: #fdf5f6 !important;
}

.btn-unete {
    border: 1px solid #8b1e2d !important;
    color: #8b1e2d !important;
    background: transparent !important;
    border-radius: 22px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.btn-unete:hover {
    background-color: #8b1e2d !important;
    color: #ffffff !important;
}

/* HAMBURGER */
.hamburger {
    font-size: 20px;
    color: #8b1e2d;
    cursor: pointer;
}

/* QUITAR ESTILOS FEOS DE BOOTSTRAP EN TOGGLE */
.navbar-toggler {
    border: none;
    box-shadow: none;
}

/* ESPACIADO GENERAL */
.custom-navbar .navbar-collapse {
    gap: 10px;
}

/* SIDEBAR */
.aico-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #8b1e2d;
    color: white;
    z-index: 1050;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.aico-sidebar.open {
    right: 0;
}

/* HEADER */
.aico-sidebar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.aico-sidebar__logo {
    height: 100px;
}

.aico-sidebar__header span {
    font-size: 22px;
    cursor: pointer;
}

/* LINKS */
.aico-sidebar__content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.aico-sidebar__content a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}

.aico-sidebar__content a:hover {
    opacity: 0.7;
}

/* OVERLAY */
.aico-sidebar__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1040;
}

.aico-sidebar__dropdown {
    display: flex;
    flex-direction: column;
}

.aico-sidebar__dropdown-title {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
}

.aico-sidebar__dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
    margin-left: 14px;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.aico-sidebar__dropdown-menu.open {
    max-height: 300px;
    margin-top: 12px;
    opacity: 1;
}

.aico-sidebar__dropdown-menu a {
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}