/* ============================================
   Carla Fitness — V2 Visual Upgrades
   Carga DESPUÉS de styles.css (solo overrides y adiciones)
   ============================================ */

/* ── 0. COLOR BLANCO EN HOVER DE TODOS LOS BOTONES ── */
.btn-primary:hover,
.btn-primary:focus,
.btn-hero:hover,
.btn-hero:focus,
.nav-cta:hover,
.nav-cta:focus,
.cta-final-v2__btn-primary:hover,
.cta-final-v2__btn-primary:focus {
    color: white !important;
    text-decoration: none;
}

/* ── 0b. SELECCIÓN DE TEXTO EN BOTONES ── */
.btn::selection,
.btn *::selection,
.nav-cta::selection,
.nav-cta *::selection,
.cta-final-v2__btn-primary::selection,
.cta-final-v2__btn-primary *::selection,
.cta-final-v2__btn-ghost::selection,
.cta-final-v2__btn-ghost *::selection,
a[class*="btn"]::selection,
a[class*="btn"] *::selection {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* ── 1. FIX: hero text overflow en pantallas medias ── */
.hero-h1 {
    white-space: normal;
    font-size: clamp(2rem, 5vw, 4.2rem);
}

.hero-description {
    white-space: normal;
    max-width: 720px;
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── LOGO: inline en navbar, no absoluto ── */
.navbar .logo {
    position: static !important;
    height: 48px !important;
    top: unset !important;
    left: unset !important;
    z-index: unset !important;
    margin-left: 1.5rem;
}

/* ── NAV CTA: botón pill limpio ── */
.nav-link.nav-cta {
    color: white !important;
    font-weight: 600;
    text-shadow: none !important;
    background: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 2px 12px rgba(201, 117, 175, 0.35);
}

.nav-link.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(201, 117, 175, 0.5);
}

.nav-link.nav-cta::after {
    display: none !important;
}

/* ── 2. FIX: mobile nav texto negro sobre fondo blanco ── */
@media (max-width: 768px) {
    .nav-menu .nav-link {
        color: var(--text-primary);
    }
    .nav-menu .nav-link.nav-cta {
        color: var(--primary);
    }
    .nav-menu .nav-link:not(.btn-primary)::after {
        background: var(--primary);
    }
}

/* ── 3. HERO BADGE ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out both;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px rgba(201, 117, 175, 0.8);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 8px rgba(201, 117, 175, 0.8); }
    50% { box-shadow: 0 0 16px rgba(201, 117, 175, 1); }
}

/* ── 4. HERO: gradiente mejorado + scroll indicator ── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
    animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── 5. FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    padding: 0.85rem 1.4rem 0.85rem 1rem;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow:
        0 4px 20px rgba(37, 211, 102, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-main);
    overflow: hidden;
    max-width: 220px;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 8px 30px rgba(37, 211, 102, 0.55),
        0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.whatsapp-float-text {
    white-space: nowrap;
    letter-spacing: 0.1px;
}

/* Pulse ring */
.whatsapp-float-ring {
    position: absolute;
    inset: -4px;
    border-radius: 100px;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: ring-pulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.12); opacity: 0; }
}

@media (max-width: 480px) {
    .whatsapp-float {
        padding: 0.9rem;
        border-radius: 50%;
        max-width: unset;
        bottom: 1.25rem;
        right: 1.25rem;
    }
    .whatsapp-float-text {
        display: none;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ── 6. SCROLL TO TOP BUTTON ── */
.scroll-top-btn {
    position: fixed;
    bottom: 1.75rem;
    left: 1.75rem;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 117, 175, 0.4);
}

.scroll-top-btn svg {
    width: 18px;
    height: 18px;
}

/* ── 7. FOOTER: logo + mejoras ── */
.footer-logo-wrap {
    margin-bottom: 0.75rem;
}

.footer-logo-wrap img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo-wrap img:hover {
    opacity: 1;
}

/* Footer section brand mejorado */
.footer-section.brand p {
    max-width: 240px;
    line-height: 1.7;
}

/* Footer divider superior mejorado */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── 8. SECTION EYEBROW mejorado (para todas las secciones) ── */
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.9rem;
    background: rgba(201, 117, 175, 0.1);
    border: 1px solid rgba(201, 117, 175, 0.22);
    border-radius: 100px;
}

/* ── 9. PLAN CARDS: botón CTA visible ── */
.plan-card-cta {
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* ── 10. NAVBAR scrolled sobre secciones claras ── */
.navbar.scrolled-light {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06) !important;
}

.navbar.scrolled-light .nav-link {
    color: var(--text-primary);
}

.navbar.scrolled-light .nav-link.nav-cta {
    color: var(--primary);
}

/* ── 11. PROBLEMA-SOLUCIÓN: flechas mejoradas ── */
.ps-divider {
    font-size: 2.5rem;
    opacity: 0.7;
}

/* ── 12. CTA FINAL: más profundidad ── */
.cta-final {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary) 0%, #a050901a, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-trial-note {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.15);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── 13. ALTERNANCIA DE FONDOS (orden: Hero dark → PS light → Dif dark → Planes light → Test dark → FAQ light → Ubic dark) ── */

/* Secciones CLARAS */
.planes,
.faq {
    background-color: #f2ede6 !important;
    background-image: none !important;
    background-attachment: scroll !important;
    background-size: auto !important;
}

/* Problema-Solución → claro */
.problema-solucion {
    background: #f2ede6 !important;
    color: var(--dark) !important;
}
.ps-block h3 { color: var(--primary) !important; }
.ps-block li { color: var(--dark) !important; }

/* Diferencial → mismo fondo rosa oscuro que CTA */
.diferencial {
    background-color: #1a0612 !important;
    background-image: linear-gradient(135deg, #2a0a1f 0%, #1a0612 40%, #3d1030 100%) !important;
    color: white !important;
}
.diferencial .section-header h2,
.diferencial .section-header p { color: white !important; }
.diferencial .diferencial-item h3,
.diferencial .diferencial-item p { color: rgba(255,255,255,0.9) !important; }

/* Ubicaciones → claro (va después del CTA oscuro) */
.ubicaciones {
    background-color: #f2ede6 !important;
    background-image: none !important;
    color: var(--dark) !important;
}

/* Cards sobre fondo claro */
.planes .plan-card,
.faq .faq-item,
.planes .info-pill {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* Cards sobre fondo oscuro — fondo rosa sutil con borde claro */
.diferencial .diferencial-item {
    background: rgba(201, 117, 175, 0.15) !important;
    border: 1.5px solid rgba(201, 117, 175, 0.6) !important;
    box-shadow: 0 4px 24px rgba(201, 117, 175, 0.2) !important;
}

/* Cards ubicaciones sobre fondo claro */
.ubicaciones .ubicacion-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.ubicaciones .ubicaciones-horario-pill {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.planes .plan-card:hover,
.faq .faq-item:hover,
.diferencial .diferencial-item:hover,
.ubicaciones .ubicacion-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 40px rgba(201, 117, 175, 0.08);
}

.planes .plan-card.featured {
    background: white;
    border: 1.5px solid rgba(201, 117, 175, 0.5);
    box-shadow: 0 4px 24px rgba(201, 117, 175, 0.15), 0 0 60px rgba(201, 117, 175, 0.08);
}

/* ── 14. CTA FINAL V2 ── */
.cta-final-v2 {
    background: linear-gradient(135deg, #2a0a1f 0%, #1a0612 40%, #3d1030 100%);
    position: relative;
    overflow: hidden;
}

.cta-final-v2::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 117, 175, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-v2::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 117, 175, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-v2__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-final-v2__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    padding: 0.35rem 0.9rem;
    background: rgba(201, 117, 175, 0.12);
    border: 1px solid rgba(201, 117, 175, 0.25);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.cta-final-v2__title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.cta-final-v2__title em {
    font-style: normal;
    color: var(--primary);
}

.cta-final-v2__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.cta-final-v2__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-final-v2__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-main);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(201, 117, 175, 0.4);
}

.cta-final-v2__btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-final-v2__btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 117, 175, 0.5);
    color: white;
}

.cta-final-v2__btn-primary:hover svg {
    transform: translateX(4px);
}

.cta-final-v2__btn-ghost {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1px;
}

.cta-final-v2__btn-ghost:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.cta-final-v2__trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-final-v2__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.cta-final-v2__trust svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Right column — stats + card */
.cta-final-v2__right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-final-v2__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.cta-final-v2__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.cta-final-v2__stat-n {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
    line-height: 1;
}

.cta-final-v2__stat-n span {
    color: var(--primary);
    font-size: 0.65em;
}

.cta-final-v2__stat-l {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.4rem;
    line-height: 1.3;
}

.cta-final-v2__stat-div {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.cta-final-v2__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s ease;
}

.cta-final-v2__card:hover {
    border-color: rgba(201, 117, 175, 0.3);
}

.cta-final-v2__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201, 117, 175, 0.12);
    border: 1px solid rgba(201, 117, 175, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-final-v2__card-icon svg {
    width: 22px;
    height: 22px;
}

.cta-final-v2__card-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.cta-final-v2__card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.cta-final-v2__card-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
}

.cta-final-v2__card-list li span:last-child {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.cta-final-v2__card-tel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-final-v2__card-tel svg {
    width: 16px;
    height: 16px;
}

.cta-final-v2__card-tel:hover {
    color: var(--primary-light);
}

@media (max-width: 900px) {
    .cta-final-v2__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .cta-final-v2__sub {
        max-width: 100%;
    }
}

/* ── 15. FOOTER V2 ── */
.footer-v2 {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-v2__top {
    padding: 4rem 0 3rem;
}

.footer-v2__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-v2__brand img.footer-v2__logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-v2__brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 240px;
}

.footer-v2__social {
    display: flex;
    gap: 0.75rem;
}

.footer-v2__social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-v2__social-btn svg {
    width: 17px;
    height: 17px;
}

.footer-v2__social-btn:hover {
    background: rgba(201, 117, 175, 0.15);
    border-color: rgba(201, 117, 175, 0.3);
    color: var(--primary);
}

.footer-v2__col h5 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.25rem;
}

.footer-v2__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-v2__col ul li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-v2__col ul li strong {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.88rem;
}

.footer-v2__col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-v2__col ul li a:hover {
    color: var(--primary-light);
}

.footer-v2__work-btn {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-v2__work-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(201, 117, 175, 0.06);
}

.footer-v2__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.25rem 0;
}

.footer-v2__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
    .footer-v2__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-v2__brand {
        grid-column: 1 / -1;
    }
    .footer-v2__brand p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-v2__grid {
        grid-template-columns: 1fr;
    }
    .footer-v2__brand {
        grid-column: unset;
    }
    .footer-v2__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ── 13. Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── 14. SOCIAL LINKS con iconos SVG ── */
.social-link-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.social-link-icon svg {
    width: 16px;
    height: 16px;
}
