/* ==========================================================================
   ESTILOS ESPECÍFICOS PARA EL FOOTER (POTTERWATCH & DIGITALUCX)
   ========================================================================== */

/* Contenedor principal del footer */
.pw-site-footer {
    background-color: rgba(15, 23, 42, 0.8); /* slate-950 con opacidad */
    border-top: 1px solid rgba(51, 65, 85, 0.6); /* border-slate-800 con opacidad */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 3rem;
    backdrop-filter: blur(12px); /* Efecto esmerilado blur-md */
    -webkit-backdrop-filter: blur(12px);
}

/* Contenedor interno de alineación */
.pw-footer-container {
    max-width: 72rem; /* max-w-6xl */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.75rem; /* text-xs (12px) */
    color: #94a3b8; /* text-slate-400 */
}

/* Marca Potterwatch a la izquierda */
.pw-footer-copyright span {
    color: #e2e8f0; /* text-slate-200 */
    font-weight: 600;
}

/* Contenedor de créditos a la derecha */
.pw-footer-credits {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    user-select: none;
}

/* Enlace a DigitalucX */
.pw-footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.pw-footer-brand-link:hover {
    opacity: 0.8;
}

/* Imagen del logo DLX obligada a escala idéntica al texto */
.pw-footer-logo {
    height: 14px !important;
    max-height: 14px !important;
    width: auto !important;
    display: inline-block !important;
    vertical-align: middle !important;
    object-fit: contain;
}

/* Texto de la marca DigitalucX */
.pw-footer-brand-text {
    color: #ffffff;
    font-weight: 900; /* font-black */
    letter-spacing: 0.05em; /* tracking-wider */
    margin-left: 0.125rem;
    font-size: 11px !important;
    line-height: 1 !important;
    display: inline-block;
    vertical-align: middle;
}

/* Ajuste Responsivo para pantallas medianas/grandes (sm:flex-row) */
@media (min-width: 640px) {
    .pw-footer-container {
        flex-direction: row;
        gap: 0px;
    }
}


