/* Footer Layout */
.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-brand-bg {
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 250px;
    height: 250px;
    opacity: 0.12;
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 0;
}

.footer-brand-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-brand-bg {
        width: 150px;
        height: 150px;
        bottom: -2%;
        left: -2%;
    }
}

.explore-cta-brand-icon {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    opacity: 0.2;
    transform: translateY(0);
    animation: floatingIcon 3s ease-in-out infinite;
}

.explore-cta-brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes floatingIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

footer.container {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Brand Column */
.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {
    .footer-logo-container {
        justify-content: center;
    }
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-slogan {
    font-size: 0.95rem;
    color: var(--pico-muted-color);
    line-height: 1.5;
    margin: 0;
    max-width: 300px;
}

@media (max-width: 576px) {
    .footer-slogan {
        max-width: 100%;
    }
}

/* Links Columns */
.footer-links-column h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--pico-heading-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    padding: 0;
}

.footer-links li::before {
    display: none; /* Eliminar bullets de Pico CSS */
}

.footer-links a {
    color: var(--pico-muted-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--pico-primary);
    padding-left: 5px;
}

/* Footer Credits & Admin Link */
.footer-credits-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--pico-muted-color);
    font-size: 0.85rem;
}
.footer-credits-container a {
    font-weight: 600;
    text-decoration: none;
    color: var(--pico-primary);
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}
.footer-credits-container a:hover {
    border-bottom-color: var(--pico-primary);
    opacity: 0.8;
}
.heart-pulse {
    display: inline-block;
    color: #e74c3c;
    animation: heartBeat 1.5s ease-in-out infinite;
    font-style: normal;
}
@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

/* Explore Footer CTA */
.explore-cta-container {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, rgba(var(--pico-primary-rgb), 0.08) 0%, transparent 70%);
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
}

.explore-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--pico-primary-rgb), 0.2), transparent);
}

.explore-cta-title {
    margin-bottom: 1rem;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--pico-color);
}

.explore-cta-text {
    margin-bottom: 2.5rem;
    color: var(--pico-muted-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    line-height: 1.5;
}

.explore-cta-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px -5px rgba(var(--pico-primary-rgb), 0.4);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-weight: 700;
    border: none;
}

.explore-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(var(--pico-primary-rgb), 0.5);
}
