/* ========================================
   FOOTER - DEPOR PLAZA
   Fondo negro con acentos dorados/naranjas
   ======================================== */

/* ===== FOOTER PRINCIPAL ===== */
.dp-footer {
    background: var(--dp-black);
    color: var(--dp-white);
}

.dp-footer-main {
    background: #111111;
    padding: 60px 0 40px;
}

.dp-footer-content {
    max-width: var(--dp-container-max);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

/* ===== COLUMNA LOGO / MARCA ===== */
.dp-footer-brand {
    flex: 0 0 auto;
    max-width: 320px;
}

.dp-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

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

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

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

.dp-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.dp-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--dp-radius-round);
    background: var(--dp-gray-dark);
    color: var(--dp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: var(--dp-transition-base);
}

.dp-footer-social a:hover {
    background: var(--dp-orange);
    color: var(--dp-white);
    transform: translateY(-3px);
}

/* ===== COLUMNA NOSOTROS ===== */
.dp-footer-about {
    flex: 1;
    max-width: 450px;
}

.dp-footer-about h3 {
    font-family: var(--dp-font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--dp-white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dp-footer-about h3 i {
    color: var(--dp-orange);
    font-size: 24px;
}

.dp-footer-about p {
    font-family: var(--dp-font-secondary);
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.dp-footer-about .dp-btn-saber-mas {
    display: inline-block;
    background: transparent;
    color: var(--dp-orange);
    border: 2px solid var(--dp-orange);
    padding: 10px 28px;
    border-radius: var(--dp-radius-md);
    font-family: var(--dp-font-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--dp-transition-base);
}

.dp-footer-about .dp-btn-saber-mas:hover {
    background: var(--dp-orange);
    color: var(--dp-white);
    text-decoration: none;
}

/* ===== COLUMNA CONTACTO ===== */
.dp-footer-contact {
    flex: 0 0 auto;
    max-width: 380px;
}

.dp-footer-contact h3 {
    font-family: var(--dp-font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--dp-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dp-footer-contact h3 i {
    color: var(--dp-orange);
    font-size: 24px;
}

.dp-footer-contact-item {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.dp-footer-contact-item > i {
    color: var(--dp-orange);
    margin-top: 3px;
    min-width: 16px;
    font-size: 14px;
}

.dp-footer-contact-item .dp-contact-label {
    font-family: var(--dp-font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--dp-white);
    display: block;
    margin-bottom: 2px;
}

.dp-footer-contact-item a {
    color: var(--dp-orange);
    text-decoration: none;
    font-size: 13px;
    display: block;
    transition: var(--dp-transition-base);
}

.dp-footer-contact-item a:hover {
    color: var(--dp-orange-light);
    text-decoration: underline;
}

.dp-footer-contact-item .dp-contact-phone {
    font-family: var(--dp-font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--dp-white);
    display: block;
    margin-top: 2px;
}

/* Sedes phones */
.dp-footer-sedes {
    margin-top: 4px;
}

.dp-footer-sedes span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2px;
}

.dp-footer-sedes strong {
    color: var(--dp-white);
}

/* ===== BARRA INFERIOR ===== */
.dp-footer-bottom {
    background: var(--dp-black);
    padding: 12px 0;
}

.dp-footer-bottom-content {
    max-width: var(--dp-container-max);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.dp-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--dp-fs-body-sm);
}

.dp-footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.dp-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: var(--dp-transition-base);
}

.dp-footer-links a:hover {
    color: var(--dp-orange);
    text-decoration: none;
}

.dp-footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .dp-footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .dp-footer-brand {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .dp-footer-logo {
        justify-content: center;
    }

    .dp-footer-social {
        justify-content: center;
    }

    .dp-footer-about,
    .dp-footer-contact {
        max-width: 100%;
        flex: 1 1 45%;
    }
}

@media (max-width: 767px) {
    .dp-footer-main {
        padding: 40px 0 30px;
    }

    .dp-footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .dp-footer-about,
    .dp-footer-contact {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .dp-footer-contact-item {
        justify-content: center;
    }

    .dp-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .dp-footer-links {
        flex-direction: column;
        gap: 8px;
    }
}