/* ========================================
   HEADER - DEPOR PLAZA
   Estilo naranja/dorado con fondo negro
   ======================================== */

/* RESET BODY - fondo blanco */
#wrapwrap,
#wrapwrap > main,
body {
    background-color: #FFFFFF !important;
}

/* RESET DEL HEADER */
header.dp-header,
header.o_header_standard.dp-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* ===== BARRA SUPERIOR DE NAVEGACION ===== */
.dp-top-nav {
    background: var(--dp-orange);
    width: 100%;
}

.dp-top-nav-content {
    max-width: var(--dp-container-max);
    margin: 0 auto;
    padding: 0 20px;
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dp-top-nav-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.dp-top-nav-left a {
    color: var(--dp-black);
    text-decoration: none;
    font-family: var(--dp-font-primary);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    transition: var(--dp-transition-fast);
    text-transform: none;
}

.dp-top-nav-left a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--dp-black);
    text-decoration: none;
}

.dp-top-nav-left a.active {
    color: var(--dp-white);
    background: rgba(0, 0, 0, 0.15);
}

.dp-top-nav-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.dp-top-nav-right a {
    color: var(--dp-black);
    text-decoration: none;
    font-family: var(--dp-font-primary);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    transition: var(--dp-transition-fast);
}

.dp-top-nav-right a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--dp-black);
    text-decoration: none;
}

/* ===== HEADER PRINCIPAL ===== */
.dp-main-header {
    background: var(--dp-white);
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dp-header-content {
    max-width: var(--dp-container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
}

/* ===== LOGO ===== */
.dp-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.dp-logo img {
    max-height: 70px;
    width: auto;
}

.dp-logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.dp-logo-icon {
    width: 55px;
    height: 55px;
    background: var(--dp-orange);
    border-radius: var(--dp-radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp-logo-icon i {
    font-size: 28px;
    color: var(--dp-white);
}

.dp-logo-name {
    font-family: var(--dp-font-primary);
    font-weight: 800;
    font-size: 28px;
    color: var(--dp-black);
    line-height: 1.1;
}

.dp-logo-name span {
    display: block;
    font-family: var(--dp-font-primary);
}

/* ===== BOTONES CTA CENTRALES ===== */
.dp-header-cta {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dp-header-cta a {
    color: var(--dp-black);
    text-decoration: none;
    font-family: var(--dp-font-primary);
    font-weight: 700;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    transition: var(--dp-transition-base);
}

.dp-header-cta a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--dp-orange);
    transition: width var(--dp-transition-base);
}

.dp-header-cta a:hover::after {
    width: 100%;
}

.dp-header-cta a:hover {
    color: var(--dp-orange-dark);
    text-decoration: none;
}

/* ===== SECCION NOSOTROS ===== */
.dp-header-about {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.dp-header-about a {
    color: var(--dp-black);
    text-decoration: none;
    font-family: var(--dp-font-primary);
    font-weight: 700;
    font-size: 16px;
    transition: var(--dp-transition-base);
}

.dp-header-about a:hover {
    color: var(--dp-orange-dark);
    text-decoration: none;
}

/* ===== SCROLL BEHAVIOR ===== */
.dp-header.dp-scrolled .dp-top-nav {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.dp-top-nav {
    max-height: 60px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .dp-header-content {
        flex-wrap: wrap;
        min-height: auto;
        padding: 10px 20px;
        gap: 10px;
    }

    .dp-header-cta {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
        padding: 8px 0;
        border-top: 1px solid #eee;
    }

    .dp-header-cta a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .dp-top-nav-content {
        flex-direction: column;
        height: auto;
        padding: 0;
    }

    .dp-top-nav-left,
    .dp-top-nav-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .dp-top-nav-left a,
    .dp-top-nav-right a {
        font-size: 12px;
        padding: 8px 10px;
    }

    .dp-header-content {
        justify-content: center;
    }

    .dp-header-cta {
        flex-wrap: wrap;
        gap: 15px;
    }

    .dp-header-about {
        display: none;
    }

    .dp-logo-name {
        font-size: 22px;
    }
}