/* ==========================================================================
   THINK IN - Sistema de Diseño Premium (Mobile First & Ultra Responsive)
   Paleta: Obsidiana #0D0D0D, Rosa Neón #FF7FE8, Gradientes Púrpura/Cian
   Fuentes: Outfit (Headings) e Inter (Body)
   ========================================================================== */

:root {
    --color-bg: #0D0D0D;
    --color-bg-alt: #121216;
    --color-surface: #17171d;
    --color-surface-hover: #21212a;
    
    --color-text: #F8FAFC;
    --color-text-muted: #94A3B8;
    --color-text-dim: #64748B;
    
    --color-pink: #ff7fe8;
    --color-pink-hover: #ff9cf0;
    --color-pink-glow: rgba(255, 127, 232, 0.4);
    --color-purple: #a855f7;
    --color-cyan: #00f2fe;
    
    --color-glass: rgba(255, 255, 255, 0.03);
    --color-glass-border: rgba(255, 255, 255, 0.08);
    --color-glass-hover: rgba(255, 255, 255, 0.06);
    --color-glass-pink-border: rgba(255, 127, 232, 0.3);
    
    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-pink: 0 0 25px rgba(255, 127, 232, 0.3);
}

/* Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #FFFFFF;
}

p {
    color: var(--color-text-muted);
    font-size: clamp(0.92rem, 1.2vw, 1.02rem);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

ul {
    list-style: none;
}

.dot {
    color: var(--color-pink) !important;
    -webkit-text-fill-color: var(--color-pink) !important;
    text-shadow: 0 0 16px var(--color-pink-glow);
    display: inline-block;
    vertical-align: baseline;
    transform-origin: center center;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, text-shadow 0.3s ease;
}

.nobreak {
    white-space: nowrap;
}

.dot:hover, h1:hover .dot, h2:hover .dot, h3:hover .dot, .brand:hover .dot, .hero-title:hover .dot {
    transform: scale(1.35) translateY(-2px) rotate(8deg);
    color: #ff9cf0 !important;
    -webkit-text-fill-color: #ff9cf0 !important;
    text-shadow: 0 0 24px rgba(255, 127, 232, 0.85);
}

/* Orbes de Fondo */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-orbs::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    max-width: 600px;
    max-height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 127, 232, 0.16) 0%, rgba(168, 85, 247, 0.08) 45%, transparent 70%);
    filter: blur(120px);
    animation: orbFloat1 22s infinite alternate ease-in-out;
}

.bg-orbs::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 65vw;
    height: 65vw;
    max-width: 550px;
    max-height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, rgba(255, 127, 232, 0.08) 45%, transparent 70%);
    filter: blur(120px);
    animation: orbFloat2 25s infinite alternate ease-in-out;
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 12%) scale(1.15); }
}

@keyframes orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-12%, -8%) scale(1.1); }
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    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;
    pointer-events: none;
}

/* Glassmorphism */
.glass-panel {
    background: var(--color-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-glass-border);
    box-shadow: var(--shadow-glass);
}

.glass-card {
    background: rgba(23, 23, 29, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    padding: clamp(1.4rem, 3.5vw, 2rem);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-pink), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.glass-card:hover {
    background: rgba(30, 30, 38, 0.88);
    border-color: var(--color-glass-pink-border);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 127, 232, 0.1);
}

.glass-card:hover::before {
    opacity: 1;
}

.wrap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-pink);
    margin-bottom: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 127, 232, 0.08);
    border: 1px solid rgba(255, 127, 232, 0.25);
    border-radius: var(--radius-full);
    font-size: clamp(0.75rem, 1.1vw, 0.82rem);
    font-weight: 500;
    color: var(--color-pink);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-pink);
    display: inline-block;
    flex-shrink: 0;
}

.comp-card--before .pulse-dot {
    background-color: #FF6B6B;
    box-shadow: 0 0 10px #FF6B6B;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    outline: none;
    text-align: center;
}

.btn--pink {
    background: linear-gradient(135deg, var(--color-pink) 0%, #d946ef 100%);
    color: #0D0D0D;
    box-shadow: 0 4px 20px rgba(255, 127, 232, 0.35);
}

.btn--pink:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 127, 232, 0.55);
    background: linear-gradient(135deg, #ff9cf0 0%, #e879f9 100%);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-glass-border);
    color: var(--color-text);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn--ghost .arw {
    transition: transform 0.25s ease;
}

.btn--ghost:hover .arw {
    transform: translateX(4px);
}

/* Selector de Idioma */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--color-text-dim);
    cursor: pointer;
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    font-family: var(--font-heading);
    font-weight: 700;
    outline: none;
}

.lang-btn.active, .lang-btn:hover {
    color: var(--color-pink);
    text-shadow: 0 0 8px var(--color-pink-glow);
}

.lang-divider {
    color: var(--color-glass-border);
    font-size: 0.75rem;
}

/* Header & LOGO WOW LATIDOS DE LUZ */
.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-full);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.35s ease;
}

.site-header.scrolled {
    top: 10px;
    padding: 0.5rem 1.2rem;
    background: rgba(13, 13, 13, 0.88);
    border-color: rgba(255, 127, 232, 0.22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

/* Envoltorio de Logo con Latido de Luz Neón Infinito */
.brand-logo-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    margin-left: -21px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 127, 232, 0.65) 0%, rgba(255, 127, 232, 0.2) 60%, transparent 85%);
    box-shadow: 0 0 20px var(--color-pink);
    z-index: -1;
    pointer-events: none;
    animation: logoBeaconPulse 2.6s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.brand-logo-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    margin-left: -21px;
    border-radius: 50%;
    border: 2px solid var(--color-pink);
    z-index: -1;
    pointer-events: none;
    animation: logoRingPulse 2.6s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-delay: 0.3s;
}

@keyframes logoBeaconPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.6);
        opacity: 0.25;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes logoRingPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.brand-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 127, 232, 0.5));
    transition: transform 0.3s ease;
}

.brand:hover .brand-logo-img {
    transform: scale(1.1) rotate(5deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-pink);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #FFFFFF;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-glass-border);
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 1020;
    pointer-events: auto;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.burger:hover, .burger.active {
    background: rgba(255, 127, 232, 0.18);
    border-color: var(--color-pink);
    box-shadow: 0 0 16px rgba(255, 127, 232, 0.3);
}

.burger span {
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--color-pink);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--color-pink);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 90px 1.5rem 2.5rem;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
    background: rgba(255, 127, 232, 0.2);
    border-color: var(--color-pink);
    color: var(--color-pink);
    transform: rotate(90deg);
    box-shadow: 0 0 18px rgba(255, 127, 232, 0.35);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.mobile-nav-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    background: rgba(23, 23, 29, 0.65);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-nav-card {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-card:hover, .mobile-nav-card:active {
    background: rgba(255, 127, 232, 0.1);
    border-color: var(--color-pink);
    transform: scale(1.02);
}

.mobile-nav-num {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-pink);
    margin-right: 0.75rem;
}

.mobile-nav-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFFFFF;
}

.mobile-nav-sub {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.mobile-nav-arrow {
    font-size: 1.1rem;
    color: var(--color-pink);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--color-glass-border);
}

.mobile-tel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-full);
    color: var(--color-text);
    font-size: 0.88rem;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 50px;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(5rem, 18vw, 18rem);
    font-weight: 900;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.015);
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    text-align: center;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.1rem, 4.8vw, 4.2rem);
    line-height: 1.08;
    margin: 1.1rem 0;
    letter-spacing: -0.03em;
}

.hero-title .line-gradient {
    background: linear-gradient(135deg, #FFFFFF 30%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(0.98rem, 1.5vw, 1.15rem);
    max-width: 620px;
    margin: 0 auto 2rem;
    color: var(--color-text-muted);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.hero-tel-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.hero-tel-pill:hover {
    color: var(--color-pink);
    border-color: rgba(255, 127, 232, 0.4);
}

/* Hero Audit Glass Component */
.hero-audit-card {
    margin-top: 2.5rem;
    padding: 1rem 0 0.5rem;
    position: relative;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.35s ease;
}

.hero-audit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.35rem 0.95rem;
    background: rgba(255, 127, 232, 0.08);
    border: 1px solid rgba(255, 127, 232, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-pink);
    margin: 0 auto 1.25rem auto;
}

.hero-audit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    text-align: left;
}

.hero-audit-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.05rem;
    background: rgba(23, 23, 29, 0.55);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-audit-item:hover {
    background: rgba(30, 30, 38, 0.8);
    border-color: var(--color-glass-pink-border);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 127, 232, 0.1);
}

/* Iconos SVG Animados */
.hero-audit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.icon-rocket {
    color: var(--color-pink);
    background: rgba(255, 127, 232, 0.1);
    border: 1px solid rgba(255, 127, 232, 0.2);
}

.hero-audit-item:hover .icon-rocket {
    background: rgba(255, 127, 232, 0.2);
    box-shadow: 0 0 15px rgba(255, 127, 232, 0.3);
}

.icon-rocket svg {
    animation: svgRocketFloat 2.4s infinite ease-in-out;
}

.icon-shield {
    color: var(--color-cyan);
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.hero-audit-item:hover .icon-shield {
    background: rgba(0, 242, 254, 0.2);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.icon-shield svg {
    animation: svgShieldPulse 2.2s infinite ease-in-out;
}

.icon-globe {
    color: var(--color-purple);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.hero-audit-item:hover .icon-globe {
    background: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.icon-globe svg {
    animation: svgGlobeSpin 8s infinite linear;
}

@keyframes svgRocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-4px) rotate(4deg);
    }
}

@keyframes svgShieldPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px var(--color-cyan));
    }
    50% {
        transform: scale(1.14);
        filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.6));
    }
}

@keyframes svgGlobeSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-audit-info {
    display: flex;
    flex-direction: column;
}

.hero-audit-info strong {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.25;
}

.hero-audit-info span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* Marquee / Ticker de Clientes & Partners */
.marquee-section {
    padding: 3.5rem 0;
    border-top: 1px solid var(--color-glass-border);
    border-bottom: 1px solid var(--color-glass-border);
    background: radial-gradient(circle at 50% 50%, rgba(23, 23, 29, 0.6) 0%, rgba(13, 13, 13, 0.9) 100%);
    overflow: hidden;
    position: relative;
}

.marquee-main-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 2.25rem auto;
    padding: 0 1rem;
}

.marquee-main-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0.4rem;
    letter-spacing: -0.02em;
}

.marquee-row-block {
    position: relative;
    margin-bottom: 2.25rem;
}

.marquee-row-block--partners {
    margin-top: 3.25rem;
}

.marquee-row-block:last-child {
    margin-bottom: 0;
}

.marquee-row-label {
    display: flex;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.marquee-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.95rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.marquee-pill--pink {
    background: rgba(255, 127, 232, 0.08);
    border: 1px solid rgba(255, 127, 232, 0.25);
    color: var(--color-pink);
}

.marquee-pill--cyan {
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: var(--color-cyan);
}

.pulse-dot--cyan {
    background-color: var(--color-cyan) !important;
    box-shadow: 0 0 10px var(--color-cyan) !important;
}

.marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    will-change: transform;
}

.marquee-track.track-left {
    animation: marqueeScrollLeft 48s linear infinite;
}

.marquee-track.track-right {
    animation: marqueeScrollRight 44s linear infinite;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScrollLeft {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.marquee-group {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.logo-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1.35rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.logo-chip:hover {
    border-color: var(--color-pink);
    color: #FFFFFF;
    background: rgba(255, 127, 232, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 232, 0.15);
}

.logo-chip--partner {
    background: rgba(23, 23, 29, 0.6);
    border: 1px solid rgba(0, 242, 254, 0.18);
    color: #FFFFFF;
}

.logo-chip--partner:hover {
    border-color: var(--color-cyan);
    background: rgba(0, 242, 254, 0.12);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.2);
}

.logo-chip--madedigital {
    border-color: rgba(255, 127, 232, 0.3);
    background: linear-gradient(135deg, rgba(255, 127, 232, 0.08) 0%, rgba(0, 242, 254, 0.08) 100%);
}

.logo-chip--madedigital:hover {
    border-color: var(--color-pink);
    box-shadow: 0 6px 22px rgba(255, 127, 232, 0.25), 0 0 15px rgba(0, 242, 254, 0.2);
}

.chip-badge {
    padding: 0.18rem 0.55rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.chip-badge--hubspot {
    background: rgba(255, 122, 89, 0.18);
    color: #FF7A59;
    border: 1px solid rgba(255, 122, 89, 0.35);
}

.chip-badge--ges {
    background: rgba(0, 242, 254, 0.15);
    color: var(--color-cyan);
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.chip-badge--md {
    background: rgba(255, 127, 232, 0.18);
    color: var(--color-pink);
    border: 1px solid rgba(255, 127, 232, 0.35);
}

/* ==========================================
   Sección Liderazgo & Equipo (WOW Version)
   ========================================== */
.team-showcase-block {
    margin-top: 2.2rem;
}

.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.team-card {
    position: relative;
    padding: 1.65rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(23, 23, 29, 0.75);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    will-change: transform;
}

/* Efecto Barrido Destello Diagonal Glare (1.5s Lento y Elegante) */
.team-card::before {
    content: '';
    position: absolute;
    top: -120%;
    left: -120%;
    width: 240%;
    height: 240%;
    transform: rotate(25deg);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
}

.team-card:hover::before {
    animation: flashGlareSweep 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes flashGlareSweep {
    0% {
        top: -120%;
        left: -120%;
        opacity: 0.95;
    }
    100% {
        top: 120%;
        left: 120%;
        opacity: 0;
    }
}

.team-card-glow {
    position: absolute;
    top: -30%;
    right: -30%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.team-card:hover {
    background: rgba(30, 30, 38, 0.88);
}

.team-card:hover .team-card-glow {
    opacity: 1;
}

/* --- Tema Violeta Elegante (Arantxa Ventas) --- */
.team-card--violet::before {
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.45) 48%,
        rgba(192, 132, 252, 0.6) 52%,
        transparent 60%,
        transparent 100%
    );
}

.team-card--violet .team-card-glow {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, transparent 70%);
}

.team-card--violet:hover {
    border-color: rgba(192, 132, 252, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 32px rgba(168, 85, 247, 0.25);
}

.team-portrait-wrapper--violet {
    border: 2px solid #c084fc;
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.4);
}

.team-card--violet:hover .team-portrait-wrapper--violet {
    transform: scale(1.06);
    box-shadow: 0 0 32px rgba(192, 132, 252, 0.7);
}

.team-role-pill--violet {
    background: rgba(192, 132, 252, 0.12);
    color: #c084fc;
    border: 1px solid rgba(192, 132, 252, 0.35);
}

.btn-team-cta--violet {
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid rgba(192, 132, 252, 0.35);
    color: #c084fc;
}

.btn-team-cta--violet:hover {
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
    color: #0D0D0D;
    box-shadow: 0 6px 22px rgba(192, 132, 252, 0.5);
    transform: translateY(-2px);
}

/* --- Tema Azul Eléctrico (Blanca Sevillano) --- */
.team-card--blue::before {
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.45) 48%,
        rgba(56, 189, 248, 0.6) 52%,
        transparent 60%,
        transparent 100%
    );
}

.team-card--blue .team-card-glow {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, transparent 70%);
}

.team-card--blue:hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 32px rgba(56, 189, 248, 0.25);
}

.team-portrait-wrapper--blue {
    border: 2px solid #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.team-card--blue:hover .team-portrait-wrapper--blue {
    transform: scale(1.06);
    box-shadow: 0 0 32px rgba(56, 189, 248, 0.7);
}

.team-role-pill--blue {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.35);
}

.btn-team-cta--blue {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38bdf8;
}

.btn-team-cta--blue:hover {
    background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
    color: #0D0D0D;
    box-shadow: 0 6px 22px rgba(56, 189, 248, 0.5);
    transform: translateY(-2px);
}

.team-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team-portrait-wrapper {
    position: relative;
    width: 105px;
    height: 105px;
    border-radius: 22px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.team-avatar-initials {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.team-avatar-initials--violet {
    color: #c084fc;
    border: 1px solid rgba(192, 132, 252, 0.35);
    text-shadow: 0 0 16px rgba(192, 132, 252, 0.6);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(23, 23, 29, 0.95) 100%);
}

.team-avatar-initials--blue {
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.35);
    text-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(23, 23, 29, 0.95) 100%);
}

.team-card:hover .team-avatar-initials--violet {
    transform: scale(1.04);
    border-color: #c084fc;
    box-shadow: inset 0 0 20px rgba(192, 132, 252, 0.3);
}

.team-card:hover .team-avatar-initials--blue {
    transform: scale(1.04);
    border-color: #38bdf8;
    box-shadow: inset 0 0 20px rgba(56, 189, 248, 0.3);
}

.team-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    display: block;
}

.team-status-badge {
    position: absolute;
    bottom: -6px;
    right: -6px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.6rem;
    background: rgba(13, 13, 13, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 600;
    color: #FFFFFF;
    backdrop-filter: blur(8px);
}

.status-pulse-green {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 8px #10B981;
    animation: pulseGreen 2s infinite ease-in-out;
}

@keyframes pulseGreen {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.team-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.team-role-pill {
    align-self: flex-start;
    padding: 0.22rem 0.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.team-title-sub {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-dim);
    margin: 0 0 0.4rem 0;
}

.team-bio {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
}

.team-skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.skill-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.22rem 0.65rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.team-card:hover .skill-tag {
    border-color: rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.team-card-actions {
    margin-top: 0.5rem;
}

.btn-team-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.35s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-team-cta--pink {
    background: rgba(255, 127, 232, 0.1);
    border: 1px solid rgba(255, 127, 232, 0.35);
    color: var(--color-pink);
}

.btn-team-cta--pink:hover {
    background: linear-gradient(135deg, var(--color-pink) 0%, #d946ef 100%);
    color: #0D0D0D;
    box-shadow: 0 6px 22px rgba(255, 127, 232, 0.45);
    transform: translateY(-2px);
}

.btn-team-cta--cyan {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.35);
    color: var(--color-cyan);
}

.btn-team-cta--cyan:hover {
    background: linear-gradient(135deg, var(--color-cyan) 0%, #00c6ff 100%);
    color: #0D0D0D;
    box-shadow: 0 6px 22px rgba(0, 242, 254, 0.45);
    transform: translateY(-2px);
}

/* Sección Por Qué Think In */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.why-card {
    background: rgba(23, 23, 29, 0.7);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: all 0.35s ease;
}

.why-card:hover {
    border-color: var(--color-glass-pink-border);
    transform: translateY(-5px);
    background: rgba(30, 30, 38, 0.88);
}

.why-num {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--color-pink);
    line-height: 1;
    margin-bottom: 0.85rem;
    text-shadow: 0 0 14px var(--color-pink-glow);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
}

.why-card p {
    font-size: 0.88rem;
    margin: 0;
}

/* Banner de Firma (Signoff) */
.signoff-section {
    padding: 5rem 0;
    text-align: center;
    background: radial-gradient(circle, rgba(255, 127, 232, 0.08) 0%, rgba(13, 13, 13, 0.95) 70%);
    border-top: 1px solid var(--color-glass-border);
    border-bottom: 1px solid var(--color-glass-border);
}

.signoff-title {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
}

.signoff-sub {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Secciones y Grids */
.section-padding {
    padding: clamp(4rem, 7vw, 6rem) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 4.5vw, 3rem);
    align-items: center;
}

.about-title {
    font-size: clamp(1.65rem, 3.2vw, 2.5rem);
    margin-bottom: 1.15rem;
}

.mv-cards {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.mv-card {
    background: rgba(23, 23, 29, 0.7);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    padding: 1.35rem;
    position: relative;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 1.35rem;
    left: 0;
    width: 4px;
    height: 26px;
    background: var(--color-pink);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px var(--color-pink);
}

.mv-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    padding-left: 0.5rem;
}

.mv-card p {
    font-size: 0.88rem;
    margin: 0;
    padding-left: 0.5rem;
}

/* Banner Alianza Estratégica 360° en Quiénes Somos */
.partner-360-banner {
    margin-top: 1.5rem;
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 242, 254, 0.25);
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.05) 0%, rgba(255, 127, 232, 0.05) 100%);
    position: relative;
}

/* 4 Líneas de Servicio */
.services-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.services-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-pink);
    margin-bottom: 0.35rem;
}

.service-card h3 {
    font-size: 1.65rem;
    margin-bottom: 0.2rem;
}

.service-card-role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-cyan);
    margin-bottom: 0.75rem;
}

.service-card-desc {
    font-size: 0.88rem;
    margin-bottom: 0.85rem;
}

/* Distintivo MadeDigital en la tarjeta Digital */
.service-partner-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.65rem 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 1.1rem;
    font-size: 0.84rem;
    color: var(--color-text-muted);
}

.service-partner-tag .madedigital-link {
    flex-shrink: 0;
    white-space: nowrap;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-list li {
    font-size: 0.84rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.service-list li::before {
    content: '✓';
    color: var(--color-pink);
    font-weight: 700;
    font-size: 0.82rem;
}

/* Simulador ROI Widget */
.roi-section {
    background: rgba(18, 18, 22, 0.6);
    border-top: 1px solid var(--color-glass-border);
    border-bottom: 1px solid var(--color-glass-border);
}

.calc-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.25rem;
    align-items: center;
    background: rgba(23, 23, 29, 0.85);
    border: 1px solid var(--color-glass-pink-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3.5vw, 2.5rem);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.calc-controls {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.calc-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.calc-select, .calc-slider {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.calc-select:focus {
    border-color: var(--color-pink);
}

.calc-result-card {
    text-align: center;
    padding: 2rem 1.25rem;
    background: radial-gradient(circle, rgba(255, 127, 232, 0.12) 0%, rgba(13, 13, 13, 0.9) 100%);
    border: 1px solid var(--color-glass-pink-border);
    border-radius: var(--radius-md);
}

.calc-val {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 800;
    color: var(--color-pink);
    text-shadow: 0 0 20px var(--color-pink-glow);
    margin: 0.3rem 0;
}

/* Testimonios */
.tst-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.tst-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #facc15;
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.tst-quote {
    font-style: italic;
    font-size: 0.92rem;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.tst-author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.tst-ava {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #0D0D0D;
}

.tst-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #FFFFFF;
}

.tst-role {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Formulario Auditoría */
.audit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 4.5vw, 3.5rem);
    align-items: center;
}

.audit-price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 0.75rem 0 1.15rem;
}

.audit-price-tag .free {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--color-pink);
    text-shadow: 0 0 20px var(--color-pink-glow);
}

.audit-price-tag .old {
    font-size: 1.15rem;
    text-decoration: line-through;
    color: var(--color-text-dim);
}

.audit-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.audit-step-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.85rem;
    font-size: 0.82rem;
}

.audit-step-item b {
    color: var(--color-pink);
    margin-right: 0.3rem;
}

.lead-form {
    background: rgba(23, 23, 29, 0.9);
    border: 1px solid var(--color-glass-pink-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.35rem, 3.5vw, 2.2rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lead-form h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.45rem);
    margin-bottom: 0.35rem;
}

.lead-form p {
    font-size: 0.84rem;
    margin-bottom: 1.35rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--color-text);
}

.form-control {
    width: 100%;
    padding: 0.75rem 0.9rem;
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-pink);
    box-shadow: 0 0 12px rgba(255, 127, 232, 0.2);
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

.form-ok-msg {
    display: none;
    text-align: center;
    padding: 2.25rem 1.15rem;
}

.form-ok-msg.active {
    display: block;
}

/* Acordeón FAQ */
.faq-wrap {
    max-width: 800px;
    margin: 2.25rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(23, 23, 29, 0.6);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--color-glass-pink-border);
}

.faq-question {
    width: 100%;
    padding: 1.15rem 1.35rem;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: clamp(0.92rem, 1.4vw, 1.02rem);
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--color-pink);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.35rem;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 1.35rem 1.15rem;
}

/* Footer & Enlaces Legales */
.site-footer {
    border-top: 1px solid var(--color-glass-border);
    background: rgba(13, 13, 13, 0.96);
    padding: 3.5rem 0 2rem;
}

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

.footer-brand p {
    font-size: 0.85rem;
    max-width: 350px;
    margin-top: 0.75rem;
}

/* Badge de Partner en el Footer */
.partner-badge-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.partner-badge-footer:hover {
    background: rgba(0, 242, 254, 0.06);
    border-color: rgba(0, 242, 254, 0.3);
}

.partner-dots {
    display: flex;
    align-items: center;
}

.p-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.p-dot-thinkin {
    background-color: var(--color-pink);
    box-shadow: 0 0 8px var(--color-pink);
}

.p-dot-madedigital {
    background-color: var(--color-cyan);
    box-shadow: 0 0 8px var(--color-cyan);
    margin-left: -2px;
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--color-pink);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-col a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--color-text-dim);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
    font-size: 0.78rem;
}

.legal-modal-btn {
    background: transparent;
    border: none;
    color: var(--color-text-dim);
    cursor: pointer;
    font-size: 0.78rem;
    padding: 0;
    transition: color 0.25s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-modal-btn:hover {
    color: var(--color-pink);
}

.legal-sep {
    color: var(--color-glass-border);
    font-size: 0.7rem;
}

/* Modal Overlay Legal */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 13, 13, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.legal-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.legal-modal-card {
    background: rgba(23, 23, 29, 0.95);
    border: 1px solid var(--color-glass-pink-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 760px;
    max-height: 85vh;
    padding: 2.25rem 2rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

.legal-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--color-glass-border);
    color: #FFFFFF;
    font-size: 1.6rem;
    line-height: 1;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.legal-modal-close:hover {
    background: var(--color-pink);
    color: #0D0D0D;
    transform: rotate(90deg);
}

.legal-modal-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-glass-border);
}

.legal-modal-header h2 {
    font-size: 1.8rem;
    margin-top: 0.2rem;
}

.legal-modal-body {
    overflow-y: auto;
    padding-right: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.legal-modal-body h3 {
    font-size: 1.15rem;
    color: #FFFFFF;
    margin: 1.25rem 0 0.5rem;
}

.legal-modal-body p {
    font-size: 0.88rem;
    margin-bottom: 0.85rem;
}

.legal-modal-body ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal-modal-body li {
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

/* Modal Selector de Contacto Rápido */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 14, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 1.5rem;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-card {
    background: rgba(20, 20, 26, 0.96);
    border: 1px solid var(--color-glass-pink-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 2.25rem 2rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 127, 232, 0.12);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal-overlay.active .contact-modal-card {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--color-glass-border);
    color: #FFFFFF;
    font-size: 1.6rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.contact-modal-close:hover {
    background: var(--color-pink);
    color: #0D0D0D;
    transform: rotate(90deg);
}

.contact-modal-header {
    margin-bottom: 1.5rem;
}

.contact-modal-header h3 {
    font-size: 1.45rem;
    margin: 0.3rem 0 0.4rem;
    line-height: 1.25;
}

.contact-modal-sub {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0;
}

.contact-modal-options {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-option-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.contact-option-phone:hover {
    background: rgba(255, 127, 232, 0.08);
    border-color: rgba(255, 127, 232, 0.4);
}

.contact-option-wa:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.4);
}

.contact-option-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-option-icon.icon-phone {
    background: rgba(255, 127, 232, 0.12);
    color: var(--color-pink);
    border: 1px solid rgba(255, 127, 232, 0.3);
}

.contact-option-icon.icon-wa {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-option-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-option-info strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
}

.contact-option-info span {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.contact-option-card .arw {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    transition: transform 0.25s ease, color 0.25s ease;
}

.contact-option-card:hover .arw {
    transform: translateX(4px);
    color: #FFFFFF;
}

/* Banner Flotante de Consentimiento de Cookies (RGPD) */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: 90%;
    max-width: 840px;
    background: rgba(23, 23, 29, 0.94);
    border: 1px solid var(--color-glass-pink-border);
    border-radius: var(--radius-lg);
    padding: 1.15rem 1.4rem;
    z-index: 1999;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease, visibility 0.45s ease;
    opacity: 0;
    visibility: hidden;
}

.cookie-banner.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.agency-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
}

/* Efecto Destello Neón MadeDigital */
@keyframes mdFlashShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes mdGlowPulse {
    0%, 100% {
        box-shadow: 0 0 14px rgba(0, 242, 254, 0.5), 0 0 28px rgba(255, 127, 232, 0.3);
    }
    50% {
        box-shadow: 0 0 26px rgba(255, 127, 232, 0.8), 0 0 38px rgba(0, 242, 254, 0.7);
    }
}

.madedigital-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.85rem;
    background: rgba(23, 23, 29, 0.85);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-full);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.madedigital-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.6), rgba(255, 127, 232, 0.8), rgba(168, 85, 247, 0.6), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.madedigital-link .md-dot {
    width: 7px;
    height: 7px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-cyan);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.madedigital-link .md-ext {
    color: var(--color-cyan);
    transition: color 0.3s ease;
}

.madedigital-link:hover {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.25) 0%, rgba(255, 127, 232, 0.3) 50%, rgba(168, 85, 247, 0.25) 100%);
    background-size: 200% 200%;
    animation: mdFlashShimmer 2s infinite ease-in-out, mdGlowPulse 1.8s infinite ease-in-out;
    border-color: rgba(0, 242, 254, 0.7);
    color: #FFFFFF;
    transform: translateY(-2px) scale(1.05);
}

.madedigital-link:hover::before {
    left: 100%;
}

.madedigital-link:hover .md-dot {
    background-color: #FFFFFF;
    box-shadow: 0 0 14px #FFFFFF;
    transform: scale(1.5);
}

.madedigital-link:hover .md-ext {
    color: var(--color-pink);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: #FFFFFF;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .about-grid, .audit-container, .calc-box, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links, .header-cta .btn--pink {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .audit-steps {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .legal-modal-card {
        padding: 1.5rem 1.25rem;
    }

    .cookie-banner {
        bottom: 12px;
        width: 94%;
        padding: 1rem 1.15rem;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .cookie-banner-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 125px 0 35px;
    }

    .hero-title {
        font-size: clamp(1.9rem, 7.5vw, 2.7rem);
        margin: 0.8rem 0;
    }

    .hero-subtitle {
        font-size: 0.94rem;
        margin-bottom: 1.25rem;
    }

    .hero-actions {
        gap: 0.65rem;
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-tel-pill {
        width: 100%;
        justify-content: center;
    }

    .hero-audit-card {
        margin-top: 1.5rem;
        padding: 1rem 1.15rem;
    }

    .hero-audit-grid {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .hero-audit-item {
        padding: 0.65rem 0.8rem;
    }

    .hero-audit-badge {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.75rem;
    }
}

/* Accessibility: Focus Visible & Reduced Motion */
:focus-visible {
    outline: 2px solid var(--color-pink) !important;
    outline-offset: 3px !important;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Visual Hover Effects for Comparativa Section */
.comp-card:hover {
    transform: translateY(-8px) !important;
}
.comp-card--before:hover {
    border-color: rgba(255, 99, 99, 0.5) !important;
    box-shadow: 0 12px 35px rgba(255, 40, 40, 0.15) !important;
}
.comp-card--after:hover {
    border-color: var(--color-pink) !important;
    box-shadow: 0 14px 45px rgba(255, 127, 232, 0.28) !important;
}

