* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* Dark Theme (Default) */
    --bg-primary: #030712;
    --bg-secondary: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.6);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent: #2dd4bf;
    --accent-glow: rgba(45, 212, 191, 0.15);
    --border: rgba(255, 255, 255, 0.08);
    --gradient-1: rgba(45, 212, 191, 0.4);
    --gradient-2: rgba(148, 163, 184, 0.1);
    --gradient-3: rgba(99, 102, 241, 0.2);
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --whatsapp-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --nav-bg: rgba(3, 7, 18, 0.8);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --card-hover-border: rgba(45, 212, 191, 0.3);
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: rgba(248, 250, 252, 0.8);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --accent: #0d9488;
    --accent-glow: rgba(13, 148, 136, 0.15);
    --border: rgba(15, 23, 42, 0.08);
    --gradient-1: rgba(13, 148, 136, 0.2);
    --gradient-2: rgba(148, 163, 184, 0.05);
    --gradient-3: rgba(99, 102, 241, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.8);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --card-hover-border: rgba(13, 148, 136, 0.3);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    margin-right: 1rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: scale(1.05);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
    position: absolute;
}

.theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.theme-toggle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.theme-toggle:hover::before { opacity: 1; }

/* ===== HERO SECTION ===== */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.circuit-board {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
    animation: circuit-pulse 3s infinite;
}

.circuit-line.horizontal { height: 1px; width: 200px; }
.circuit-line.vertical {
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

@keyframes circuit-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.network-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
    animation: node-pulse 3s infinite;
}

.node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 50%;
    animation: node-ring 2s infinite;
}

.node.connected::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform-origin: left center;
    animation: connection-pulse 2s infinite;
}

@keyframes node-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent); }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 30px var(--accent), 0 0 60px var(--accent); }
}

@keyframes node-ring {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes connection-pulse {
    0%, 100% { opacity: 0.3; width: 100px; }
    50% { opacity: 0.8; width: 150px; }
}

.code-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    font-family: 'JetBrains Mono', monospace;
}

.code-symbol {
    position: absolute;
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0;
    animation: code-float 6s infinite;
    text-shadow: 0 0 10px var(--accent);
}

@keyframes code-float {
    0% { opacity: 0; transform: translateY(100vh) rotate(0deg); }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(-100px) rotate(360deg); }
}

.hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%232dd4bf' fill-opacity='0.05'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    animation: data-flow 3s infinite;
    opacity: 0.4;
}

@keyframes data-flow {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(400%); opacity: 0; }
}

.tech-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 1;
    pointer-events: none;
}

.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 50%;
    animation: core-rotate 20s linear infinite;
}

.core-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
}

.core-ring-1 { width: 400px; height: 400px; border-left-color: transparent; border-right-color: transparent; }
.core-ring-2 { width: 320px; height: 320px; border-top-color: transparent; border-bottom-color: transparent; animation-direction: reverse; animation-duration: 15s; }
.core-ring-3 { width: 240px; height: 240px; border-left-color: transparent; border-right-color: transparent; animation-duration: 10s; }

@keyframes core-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: core-pulse 3s infinite;
}

@keyframes core-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 5%;
    max-width: 900px;
}

.hero-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }

.tech-loader {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.tech-loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: tech-spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.tech-loader-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: transparent;
    border-right-color: var(--accent);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.tech-loader-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border: 2px solid var(--accent);
    animation: tech-pulse 1.5s infinite;
}

@keyframes tech-spin { to { transform: rotate(360deg); } }

@keyframes tech-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.loader-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: loader-blink 1.5s infinite;
}

.loader-text::after {
    content: '_';
    animation: cursor-blink 1s infinite;
}

@keyframes loader-blink { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes cursor-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    animation: badge-in 0.8s ease-out 0.5s both;
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.2);
    font-family: 'JetBrains Mono', monospace;
}

.badge-icon {
    width: 16px;
    height: 16px;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px var(--accent)); }
    50% { transform: scale(1.2); filter: drop-shadow(0 0 15px var(--accent)); }
}

@keyframes badge-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.title-line { display: block; overflow: hidden; }

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: text-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-word:nth-child(1) { animation-delay: 0.8s; }
.title-word:nth-child(2) { animation-delay: 0.9s; }
.title-word:nth-child(3) { animation-delay: 1.0s; }
.title-word:nth-child(4) { animation-delay: 1.1s; }
.title-word:nth-child(5) { animation-delay: 1.2s; }

.title-word.highlight {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-word.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-grow 0.6s ease-out 1.5s forwards;
}

@keyframes text-reveal {
    from { opacity: 0; transform: translateY(100%) rotateX(-90deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

@keyframes underline-grow { to { transform: scaleX(1); } }

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 1.4s forwards;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 1.6s forwards;
}

.btn {
    padding: 1rem 2.25rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    box-shadow: 0 10px 40px -10px rgba(248, 250, 252, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px -15px rgba(45, 212, 191, 0.4);
}

.btn-primary:active { transform: translateY(-2px) scale(0.98); }

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px -15px rgba(45, 212, 191, 0.2);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon { transform: translateX(4px); }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fade-in 0.8s ease-out 2s forwards;
}

.scroll-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

@keyframes fade-in { to { opacity: 1; } }

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-effect {
    to { transform: scale(4); opacity: 0; }
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 5%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease, background-color 0.4s ease;
}

nav.scrolled { padding: 1rem 5%; }

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span { color: var(--accent); font-weight: 300; }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active .mobile-menu { transform: translateY(0); }

.mobile-menu-links {
    list-style: none;
    margin-bottom: 3rem;
}

.mobile-menu-links li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active .mobile-menu-links li { opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.3s; }

.mobile-menu-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.mobile-menu-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s;
}

.mobile-menu-links a:hover { color: var(--accent); }
.mobile-menu-links a:hover::after { width: 100%; }

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

/* ===== STATS ===== */
.stats {
    padding: 4rem 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    transition: background-color 0.4s ease;
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat { text-align: center; }

.stat-value {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #99f6e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ===== SERVICES ===== */
.services { padding: 6rem 5%; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'JetBrains Mono', monospace;
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-hover-border);
    box-shadow: 0 20px 60px -20px var(--accent-glow);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent) 0%, #99f6e4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px -10px var(--accent-glow);
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover { gap: 0.875rem; }

/* ===== FEATURES ===== */
.features {
    padding: 6rem 5%;
    background: var(--bg-secondary);
    transition: background-color 0.4s ease;
}

.features-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s, background-color 0.4s ease, border-color 0.4s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(45, 212, 191, 0.2);
    transform: translateX(8px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.25rem;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ===== PORTFOLIO ===== */
.portfolio {
    padding: 6rem 5%;
    background: var(--bg-secondary);
    transition: background-color 0.4s ease;
}

.portfolio-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-hover-border);
    box-shadow: 0 20px 60px -20px var(--accent-glow);
}

.portfolio-preview {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.portfolio-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-preview img { transform: scale(1.05); }

.preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 7, 18, 0.85), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .preview-overlay { opacity: 1; }

.btn-preview {
    background: var(--accent);
    color: var(--bg-primary);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .btn-preview { transform: translateY(0); }
.btn-preview:hover { box-shadow: 0 10px 30px -10px rgba(45, 212, 191, 0.5); }

.portfolio-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tech-tags span {
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.2);
    color: var(--accent);
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

.portfolio-cta {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s, color 0.3s;
}

.portfolio-cta:hover {
    color: var(--accent);
    gap: 0.6rem;
}

/* ===== CTA SECTION ===== */
.cta-section { padding: 6rem 5%; }

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, var(--bg-secondary) 100%);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.cta-container h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-container p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER - BALANCED & PROFESSIONAL ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 5% 2rem;
    position: relative;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-block;
    width: fit-content;
    transition: transform 0.3s ease;
}

.footer-logo:hover { transform: translateX(4px); }
.logo-accent { color: var(--accent); }

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge.remote {
    background: rgba(45, 212, 191, 0.08);
    border-color: rgba(45, 212, 191, 0.2);
    color: var(--accent);
}

.badge.remote:hover {
    background: rgba(45, 212, 191, 0.12);
    border-color: rgba(45, 212, 191, 0.3);
}

.badge-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Links Columns */
.footer-links h4,
.footer-contact h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Contact Column */
.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.contact-email:hover {
    background: rgba(45, 212, 191, 0.12);
    border-color: rgba(45, 212, 191, 0.3);
    transform: translateY(-2px);
}

.contact-email svg { width: 18px; height: 18px; }

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
    background: rgba(45, 212, 191, 0.1);
    border-color: rgba(45, 212, 191, 0.25);
    color: var(--accent);
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 3rem;
        align-items: start;
    }

    .footer-brand { max-width: 280px; }
    .footer-bottom { text-align: left; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.whatsapp-btn {
    width: 64px;
    height: 64px;
    background: var(--whatsapp-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.whatsapp-btn:hover::before { left: 100%; }

.whatsapp-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5), 0 0 0 6px rgba(37, 211, 102, 0.15);
}

.whatsapp-btn:active { transform: translateY(-3px) scale(0.98); }

.whatsapp-icon {
    width: 36px;
    height: 36px;
    fill: white;
    position: relative;
    z-index: 1;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s;
}

.whatsapp-btn:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--bg-secondary);
    border: 1px solid rgba(45, 212, 191, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(45, 212, 191, 0.3);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.back-to-top {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.15) 0%, rgba(45, 212, 191, 0.08) 100%);
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.back-to-top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #99f6e4 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.back-to-top:hover::before { opacity: 0.15; }

.back-to-top:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 15px 50px -15px var(--accent-glow);
}

.back-to-top svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
    stroke-width: 2.5;
}

.back-to-top:hover svg { transform: translateY(-4px); }
.back-to-top:active { transform: translateY(-3px) scale(0.95); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .tech-core { width: 280px; height: 280px; }
    .core-ring-1 { width: 280px; height: 280px; }
    .core-ring-2 { width: 220px; height: 220px; }
    .core-ring-3 { width: 160px; height: 160px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 7rem 5% 4rem; }
    .section-header { margin-bottom: 3rem; }
    .service-card, .feature { padding: 1.75rem 1.25rem; }
    .cta-container { padding: 3rem 1.5rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
    .tech-core { width: 220px; height: 220px; }
    .core-ring-1 { width: 220px; height: 220px; }
    .core-ring-2 { width: 170px; height: 170px; }
    .core-ring-3 { width: 120px; height: 120px; }
    .floating-buttons { bottom: 1.5rem; right: 1.5rem; }
    .whatsapp-btn, .back-to-top { width: 56px; height: 56px; }
    .whatsapp-icon { width: 30px; height: 30px; }
    .whatsapp-tooltip { display: none; }
    .theme-toggle { margin-right: 0; }
    .footer { padding: 3rem 1.5rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { text-align: center; align-items: center; }
    .footer-description { max-width: 100%; }
    .footer-badges { justify-content: center; }
    .footer-links, .footer-contact { text-align: center; }
    .footer-links ul { align-items: center; }
    .contact-email { width: 100%; justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { text-align: center; }
}

@media (max-width: 640px) {
    .portfolio-preview { aspect-ratio: 3 / 2; }
    .preview-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(3, 7, 18, 0.6), transparent 40%);
        padding: 1rem;
    }
    .btn-preview { transform: translateY(0); font-size: 0.8125rem; padding: 0.5rem 1rem; }
}

@media (max-width: 480px) {
    .hero-badge { padding: 0.5rem 1rem; font-size: 0.6875rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.9375rem; }
    .stat-value { font-size: 2.5rem; }
    .section-title { font-size: 1.75rem; }
    .tech-core { width: 180px; height: 180px; }
    .core-ring-1 { width: 180px; height: 180px; }
    .core-ring-2 { width: 140px; height: 140px; }
    .core-ring-3 { width: 100px; height: 100px; }
    .floating-buttons { bottom: 1rem; right: 1rem; }
    .whatsapp-btn, .back-to-top { width: 52px; height: 52px; }
    .whatsapp-icon { width: 28px; height: 28px; }
    .mobile-menu-links a { font-size: 1.5rem; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Light Mode Adjustments */
[data-theme="light"] .badge {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--border);
    color: var(--text-primary);
}
[data-theme="light"] .badge:hover { background: rgba(0, 0, 0, 0.06); }
[data-theme="light"] .badge.remote {
    background: rgba(13, 148, 136, 0.08);
    border-color: rgba(13, 148, 136, 0.2);
    color: var(--accent);
}
[data-theme="light"] .contact-email {
    background: rgba(13, 148, 136, 0.08);
    border-color: rgba(13, 148, 136, 0.2);
    color: var(--accent);
}
[data-theme="light"] .contact-email:hover { background: rgba(13, 148, 136, 0.12); }
[data-theme="light"] .social-link {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--border);
}
[data-theme="light"] .social-link:hover { background: rgba(13, 148, 136, 0.1); }

Sí, exacto. Para que el diseño móvil se vea **perfecto** (como la versión mejorada con las "píldoras" y todo centrado) y no se vea raro como en la captura anterior, sigue este paso:

1.  Abre tu archivo `assets/css/styles.css`.
2.  Ve **al final de todo el archivo**.
3.  Pega el bloque que te di justo después de la última llave `}`.

**¿Por qué al final?**
Porque en CSS, lo que está más abajo tiene prioridad. Al pegarlo al final, te aseguras de que sobrescriba cualquier estilo "viejo" o genérico que pudiera haber quedado en el código anterior y fuerce el diseño limpio y centrado que diseñamos para móvil.

Aquí tienes el bloque otra vez por si necesitas copiarlo rápidamente para pegarlo al final:

```css
/* ===== MOBILE FOOTER OPTIMIZATION (PEGAR AL FINAL) ===== */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1.25rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        margin-bottom: 0.25rem;
    }

    .footer-logo {
        font-size: 1.35rem;
        margin-bottom: 0.375rem;
    }

    .footer-description {
        font-size: 0.9rem;
        color: var(--text-secondary);
        max-width: 90%;
        margin: 0 auto;
        line-height: 1.5;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }

    .badge {
        width: fit-content;
        padding: 0.45rem 0.875rem;
        font-size: 0.8rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .badge.remote {
        background: rgba(45, 212, 191, 0.1);
        border-color: rgba(45, 212, 191, 0.25);
        color: var(--accent);
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-primary);
        margin-bottom: 0.75rem;
        opacity: 0.9;
    }

    .footer-links ul {
        gap: 0.5rem;
        list-style: none;
        padding: 0;
    }

    .footer-links a {
        font-size: 0.925rem;
        color: var(--text-secondary);
        text-decoration: none;
        display: inline-block;
        transition: color 0.2s ease;
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .contact-email {
        width: 100%;
        max-width: 260px;
        margin: 0 auto 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
        justify-content: center;
        border-radius: 10px;
        background: rgba(45, 212, 191, 0.08);
        border: 1px solid rgba(45, 212, 191, 0.2);
        color: var(--accent);
    }

    .footer-social {
        justify-content: center;
        gap: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        transition: all 0.3s ease;
    }

    .social-link svg { width: 18px; height: 18px; }

    .social-link:hover {
        background: rgba(45, 212, 191, 0.1);
        border-color: rgba(45, 212, 191, 0.25);
        color: var(--accent);
        transform: translateY(-2px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 1.25rem;
        margin-top: 0.25rem;
    }

    .copyright {
        font-size: 0.775rem;
        color: var(--text-muted);
        opacity: 0.8;
    }
}

.whatsapp-btn {
    width: 64px;
    height: 64px;
    background: var(--whatsapp-gradient, linear-gradient(135deg, #25D366 0%, #128C7E 100%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 999;
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
    fill: #ffffff;
    /* Fallback si fill no funciona */
    color: #ffffff;
}

/* Si el icono sigue sin verse, fuerza el color */
.whatsapp-btn svg path {
    fill: #ffffff !important;
}

