/* ==================== FOOTER SECTION ==================== */
.footer-section {
    position: relative;
    width: 100dvw;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    padding: clamp(2rem, 3vh, 3rem) clamp(1.5rem, 3vw, 2rem);
}

/* Canvas Background - Desactivado */
.footer-canvas {
    display: none;
}

/* Grid Pattern Background */
.footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

/* Floating Shapes - Removidas */
.footer-floating-elements {
    display: none;
}

/* Main Content Container */
.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2vh, 1.8rem);
    text-align: center;
    padding: 0 1rem;
    width: 100%;
    max-width: 1400px;
    height: 100%;
}

/* Decorative Text Background */
.footer-text-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 12vw, 15rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.01);
    letter-spacing: clamp(0.05em, 0.08em, 0.12em);
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Main Title Styling */
.footer-title-wrapper {
    position: relative;
    overflow: hidden;
}

.footer-main-title {
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: 200;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-title-line {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    will-change: transform, opacity;
}

.footer-title-gradient {
    background: linear-gradient(135deg, #FF1B6B 0%, #8A2BE2 50%, #FF006A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Subtitle */
.footer-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
}

/* Stats Section */
.footer-stats {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
    opacity: 0;
    transform: translateY(20px);
    margin: 0;
}

.footer-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.footer-stat-number {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #FF1B6B 0%, #8A2BE2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.footer-stat-label {
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-stat-divider {
    width: 2px;
    height: clamp(40px, 6vh, 55px);
    background: linear-gradient(180deg, transparent, rgba(255, 27, 107, 0.5), transparent);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: clamp(1.2rem, 2.5vw, 1.8rem);
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    margin: 0;
}

.footer-social-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: clamp(0.8rem, 1.5vh, 1rem) clamp(1.5rem, 3vw, 2rem);
    background: rgba(18, 15, 22, 0.6);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    backdrop-filter: blur(10px) saturate(150%);
    border: 2px solid rgba(255, 27, 107, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 27, 107, 0.2), rgba(138, 43, 226, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-social-link i {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link span {
    position: relative;
    z-index: 1;
}

.footer-social-link:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 27, 107, 0.8);
    box-shadow: 
        0 10px 40px rgba(255, 27, 107, 0.4),
        0 0 30px rgba(138, 43, 226, 0.3);
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-social-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* CTA Button */
.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: clamp(0.9rem, 2vh, 1.1rem) clamp(2rem, 4vw, 2.8rem);
    background: linear-gradient(135deg, #FF1B6B, #8A2BE2);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    margin: 0;
    box-shadow: 
        0 8px 30px rgba(255, 27, 107, 0.3),
        0 0 18px rgba(138, 43, 226, 0.2);
}

.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8A2BE2, #FF1B6B);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-cta span,
.footer-cta i {
    position: relative;
    z-index: 1;
}

.footer-cta i {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(255, 27, 107, 0.5),
        0 0 40px rgba(138, 43, 226, 0.4);
}

.footer-cta:hover::before {
    opacity: 1;
}

.footer-cta:hover i {
    transform: translateX(5px);
}

/* Bottom Section */
.footer-bottom {
    position: relative;
    bottom: auto;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(1rem, 3vw, 2rem);
    margin-top: 0;
    opacity: 0;
    transform: translateY(20px);
    gap: clamp(2rem, 4vw, 3rem);
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: clamp(0.6rem, 1vw, 0.8rem);
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin: 0;
    flex-wrap: wrap;
    line-height: 1.6;
}

.footer-year {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.footer-separator {
    color: rgba(255, 27, 107, 0.6);
}

.footer-heart {
    color: #FF1B6B;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

/* Scroll to Top Button */
.footer-scroll-top {
    width: clamp(48px, 6vw, 55px);
    height: clamp(48px, 6vw, 55px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 15, 22, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 27, 107, 0.4);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    cursor: pointer;
    transition: all 0.3s ease;
    will-change: transform;
    flex-shrink: 0;
}

.footer-scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(255, 27, 107, 0.8);
    box-shadow: 
        0 10px 30px rgba(255, 27, 107, 0.4),
        0 0 40px rgba(138, 43, 226, 0.3);
}

.footer-scroll-top i {
    transition: transform 0.3s ease;
}

.footer-scroll-top:hover i {
    transform: translateY(-3px);
}

/* Decorative Corner Elements */
.footer-corner {
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.15;
}

.footer-corner::before,
.footer-corner::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #FF1B6B, #8A2BE2);
}

.footer-corner-tl {
    top: 0;
    left: 0;
}

.footer-corner-tl::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.footer-corner-tl::after {
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
}

.footer-corner-tr {
    top: 0;
    right: 0;
}

.footer-corner-tr::before {
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
}

.footer-corner-tr::after {
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
}

.footer-corner-bl {
    bottom: 0;
    left: 0;
}

.footer-corner-bl::before {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.footer-corner-bl::after {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 100%;
}

.footer-corner-br {
    bottom: 0;
    right: 0;
}

.footer-corner-br::before {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
}

.footer-corner-br::after {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 100%;
}

/* ==================== RESPONSIVE ==================== */

/* Tablets */
@media (max-width: 1024px) {
    .footer-main-title {
        font-size: clamp(3.5rem, 12vw, 9rem);
    }
    
    .footer-text-bg {
        font-size: clamp(3rem, 10vw, 12rem);
        letter-spacing: clamp(0.03em, 0.06em, 0.1em);
    }
    
    .footer-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }
    
    .footer-stats {
        gap: 2rem;
    }
    
    .footer-stat-number {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .footer-stat-divider {
        height: 50px;
    }
    
    .footer-social {
        gap: 1.5rem;
    }
    
    .footer-social-link {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .footer-cta {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 2rem;
    }
    
    .footer-copyright {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .footer-corner {
        width: 150px;
        height: 150px;
    }
    
    .floating-shape {
        opacity: 0.1;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .footer-section {
        height: auto;
        min-height: 100dvh;
        padding: 3rem 0;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-main-title {
        font-size: clamp(3rem, 10vw, 6rem);
    }
    
    .footer-bottom {
        position: relative;
        margin-top: 2rem;
    }
}

/* Mobile Portrait */
@media (max-width: 768px) {
    .footer-section {
        min-height: 100dvh;
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
        padding: clamp(2rem, 4vh, 3rem) 1rem;
    }
    
    .footer-content {
        gap: clamp(1.5rem, 3vh, 2.5rem);
        padding: 0 0.5rem;
        height: auto;
    }
    
    .footer-main-title {
        font-size: clamp(3rem, 10vw, 7rem);
        gap: 0.2rem;
    }
    
    .footer-text-bg {
        font-size: clamp(2.5rem, 8vw, 10rem);
        letter-spacing: clamp(0.02em, 0.05em, 0.08em);
    }
    
    .footer-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.2rem);
        padding: 0 1rem;
        margin: 0;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: clamp(1.2rem, 2.5vh, 1.8rem);
        margin: 0;
    }
    
    .footer-stat-divider {
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255, 27, 107, 0.5), transparent);
    }
    
    .footer-stat-number {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .footer-stat-label {
        font-size: 0.85rem;
    }
    
    .footer-social {
        gap: 1rem;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }
    
    .footer-social-link {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
    }
    
    .footer-social-link i {
        font-size: 1.2rem;
    }
    
    .footer-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin: 0;
    }
    
    .footer-cta i {
        font-size: 1.3rem;
    }
    
    .footer-bottom {
        position: relative;
        flex-direction: column;
        gap: clamp(1.5rem, 3vh, 2rem);
        padding: 0 1rem;
        margin-top: 0;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
        text-align: center;
        gap: clamp(0.5rem, 1vw, 0.7rem);
        line-height: 1.8;
    }
    
    .footer-scroll-top {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .footer-corner {
        width: 100px;
        height: 100px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-section {
        padding: clamp(2rem, 4vh, 3rem) 0.8rem;
    }
    
    .footer-content {
        gap: clamp(1.2rem, 2.5vh, 2rem);
        padding: 0 0.5rem;
    }
    
    .footer-main-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
        gap: 0.1rem;
    }
    
    .footer-text-bg {
        font-size: clamp(2rem, 7vw, 8rem);
        letter-spacing: clamp(0.01em, 0.04em, 0.06em);
    }
    
    .footer-subtitle {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        margin: 0;
    }
    
    .footer-stats {
        gap: clamp(1rem, 2vh, 1.5rem);
        margin: 0;
    }
    
    .footer-stat-number {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .footer-stat-label {
        font-size: 0.75rem;
    }
    
    .footer-social {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 0.8rem;
        margin: 0;
    }
    
    .footer-social-link {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.3rem;
        font-size: 0.85rem;
    }
    
    .footer-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.9rem 1.6rem;
        font-size: 0.9rem;
        margin: 0;
    }
    
    .footer-bottom {
        margin-top: 0;
        gap: clamp(1.2rem, 2.5vh, 1.8rem);
    }
    
    .footer-copyright {
        font-size: 0.75rem;
        flex-direction: column;
        gap: clamp(0.4rem, 1vw, 0.6rem);
        line-height: 1.8;
    }
    
    .footer-scroll-top {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .footer-text-bg {
        font-size: clamp(1.5rem, 6vw, 6rem);
        letter-spacing: 0.01em;
    }
    
    .footer-main-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }
}

