/* =========================================
   1. GLOBAL & RESET
========================================= */
body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden; /* Evita scroll horizontal accidental */
}

#app {
    overflow: hidden;
}

/* =========================================
   2. HEADER & NAVIGATION
========================================= */
.header-red-line {
    background: #FF0000;
    height: 32px;
    display: flex;
}

.text-header {
    color: #E8EA43;
    font-family: "Bree Serif", serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 32px;
    text-transform: uppercase;
}

/* Menú de Navegación */
.nav__menu {
    color: var(--Blanco, #FFF);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav__menu:hover {
    color: #FFEC00;
}

.active__header {
    color: #FFF !important;
    font-weight: 700 !important;
}

/* Offcanvas (Menú Móvil) */
.offcanvas-body .nav-link {
    font-size: 18px; /* Texto más grande para dedos */
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1); /* Separador sutil */
}

.offcanvas-body .nav-link:active {
    background-color: rgba(255,255,255,0.05);
}

/* =========================================
   3. DROPDOWNS & AUTH
========================================= */
.dropdown-menu {
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 10px;
    width: 300px;
    padding: 20px;
}

.dropdown-menu h6 {
    color: var(--Negro, #111010);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.dropdown-menu .form-label {
    color: var(--Text, #5C5C5C);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.dropdown-menu .form-control {
    border-radius: 4px;
    border: 1px solid var(--Linea, #DDDDE0);
    background: rgba(255, 255, 255, 0.93);
    color: #000;
    height: 45px;
}

.dropdown-menu .form-control:focus {
    border-color: #FFEC00;
    box-shadow: 0 0 0 0.2rem rgba(255, 236, 0, 0.2);
}

/* media query */
@media (max-width: 768px) {
   .navbar-logo{
    width: 220px;
   }
}

/* =========================================
   4. BUTTONS
========================================= */
/* Botón Zona Privada (Desktop) */
.btn-zonaprivada {
    border: 1px solid #FFEC00;
    border-radius: 6px;
    padding: 10px 24px !important;
    margin-left: 15px;
    transition: all 0.3s ease;
    color: #fff !important;
    font-weight: 500;
    display: inline-block;
}

.btn-zonaprivada:hover {
    background-color: #FFEC00 !important;
    color: #000 !important;
}

.btn-zonaprivada.dropdown-toggle::after {
    display: none !important;
}

/* Botón Warning General */
.btn-warning {
    background-color: #FFEC00;
    border: none;
    color: #000;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-warning:hover {
    background-color: #e6d500;
    color: #000;
}

/* =========================================
   5. FOOTER
========================================= */
.titulo-footer {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;

    display: block;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #FFEC00;
}

.footer-newsletter {
    background: #0b0b0b;
    border-radius: 4px;
    border: 1px solid var(--Linea, #DDDDE0);
    overflow: hidden;
    display: flex;
}

.footer-input {
    background: transparent !important;
    border: 0 !important;
    color: #fff !important;
    box-shadow: none !important;
    flex-grow: 1;
    padding-left: 15px;
}

.footer-input::placeholder {
    color: #fff;
    opacity: 0.7;
}

.footer-btn {
    border: 0;
    border-radius: 0;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #e6d500;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-btn:hover {
    background: #e6d500;
    color: #000;
}

.footer-social {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    border-radius: 50%;
}

.footer-social:hover {
    border-color: #FFEC00;
    color: #FFEC00;
}

.footer-icon svg {
    width: 18px;
    height: 18px;
}

/* Media Query Footer Mobile */
@media (max-width: 768px) {
    .titulo-footer {
        margin-top: 2rem;
        border-bottom: 2px solid #FFEC00; /* Detalle visual */
        display: inline-block;
        padding-bottom: 5px;
    }
}
