/* ========================================
   MI WEB DE DESARROLLO
   Interfaz Profesional Futurista
   Mobile-First + Desktop
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Reset Base - Limpieza Estructural */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

/* Botones de planes - Visibilidad optimizada */
[data-plan] {
    cursor: pointer;
    position: relative;
    z-index: 10;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #050505 !important;
    color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body { 
    font-family: 'Space Grotesk', sans-serif; 
    background: #0a0a0a; 
    color: #fff; 
    overflow-x: hidden; 
}

/* Contenedores SPA - Sin espaciado superior */
#spa-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#home-view {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor { 
    width: 20px; 
    height: 20px; 
    border: 2px solid #fff; 
    border-radius: 50%; 
    position: fixed; 
    pointer-events: none; 
    z-index: 9999; 
    transition: transform 0.1s; 
}

.cursor-follower { 
    width: 40px; 
    height: 40px; 
    background: rgba(255,255,255,0.1); 
    border-radius: 50%; 
    position: fixed; 
    pointer-events: none; 
    z-index: 9998; 
    transition: transform 0.3s; 
}

/* ========================================
   NAVIGATION - TRANSPARENCIA ABSOLUTA
   ======================================== */
nav, .header, header, #header, .navbar {
    position: fixed !important; 
    top: 0; 
    left: 0;
    width: 100%; 
    padding: 30px 50px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    z-index: 9999 !important; 
    mix-blend-mode: difference;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border: none !important;
    border-bottom: none !important;
    /* Optimizaciones de rendimiento */
    transform: translateZ(0);
    will-change: background, backdrop-filter;
    transition: background 0.2s ease-out, backdrop-filter 0.2s ease-out;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.85) !important;
    background-color: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    mix-blend-mode: normal;
    /* Mantener aceleración */
    transform: translateZ(0);
}

.logo { 
    font-size: 24px; 
    font-weight: 700; 
    letter-spacing: -1px; 
    color: #ffffff !important;
}

.nav-links { 
    display: flex; 
    align-items: center;
    gap: 40px; 
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

/* Fix para evitar que los elementos se compriman */
nav {
    min-width: 0;
}

nav > * {
    flex-shrink: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a { 
    display: flex;
    align-items: center;
    color: #fff; 
    text-decoration: none; 
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    position: relative; 
    line-height: 1;
    padding: 8px 0;
}

.nav-links a::after { 
    content: ''; 
    position: absolute; 
    bottom: 2px; 
    left: 0; 
    width: 0; 
    height: 1px; 
    background: #fff; 
    transition: width 0.3s; 
}

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

/* ========================================
   BOTÓN CTA - INICIAR PROYECTO
   ======================================== */
.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 45px !important;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px !important;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Borde gradiente neón */
.btn-cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        rgba(120, 119, 198, 0.8),
        rgba(255, 119, 198, 0.8),
        rgba(79, 172, 254, 0.8),
        rgba(120, 119, 198, 0.8)
    );
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -2;
    animation: gradient-shift 4s ease infinite;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

/* Fondo interno glassmorphism */
.btn-cta::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 50px;
    z-index: -1;
    transition: background 0.4s ease;
}

/* Animación del gradiente */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hover - Efecto irresistible */
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 8px 30px rgba(120, 119, 198, 0.4),
        0 0 40px rgba(255, 119, 198, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cta:hover::before {
    opacity: 1;
    animation-duration: 2s;
}

.btn-cta:hover::after {
    background: rgba(20, 20, 20, 0.9);
}

/* Active state */
.btn-cta:active {
    transform: translateY(0);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ========================================
   MENÚ HAMBURGUESA (Mobile)
   ======================================== */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    flex-direction: column;
    gap: 6px;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Menú Móvil Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 120px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links li {
    display: flex;
    align-items: center;
}

.mobile-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    line-height: 1;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:hover {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

/* Botón CTA en menú móvil */
.btn-cta-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 20px 48px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1 !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid transparent;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-cta-mobile::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        rgba(120, 119, 198, 0.8),
        rgba(255, 119, 198, 0.8),
        rgba(79, 172, 254, 0.8),
        rgba(120, 119, 198, 0.8)
    );
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -2;
    animation: gradient-shift 4s ease infinite;
    opacity: 0.6;
}

.btn-cta-mobile::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 50px;
    z-index: -1;
}

.btn-cta-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 8px 30px rgba(120, 119, 198, 0.4),
        0 0 40px rgba(255, 119, 198, 0.2);
}

.btn-cta-mobile:hover::before {
    opacity: 1;
}

.mobile-menu-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    opacity: 0.6;
    font-size: 14px;
}

/* Animación hamburguesa a X */
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero { 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-bg { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: radial-gradient(circle at 30% 70%, rgba(120,119,198,0.3) 0%, transparent 50%), 
                radial-gradient(circle at 70% 30%, rgba(255,119,198,0.3) 0%, transparent 50%); 
}

.hero-content { 
    text-align: center; 
    z-index: 1; 
}

.hero-subtitle { 
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 4px; 
    margin-bottom: 30px; 
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

/* Animaciones de entrada Hero */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title { 
    font-size: 120px; 
    font-weight: 700; 
    line-height: 0.9; 
    letter-spacing: -5px; 
    margin-bottom: 40px; 
}

.hero-title span { 
    display: block; 
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger animation para cada línea */
.hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-title span:nth-child(2) { animation-delay: 0.4s; }

.hero-title .outline { 
    -webkit-text-stroke: 2px #fff; 
    color: transparent; 
}

.hero-desc { 
    font-size: 18px; 
    max-width: 500px; 
    margin: 0 auto 50px; 
    opacity: 0;
    line-height: 1.6; 
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Botón Hero - Estilo aesthetic coherente con CTA del menú */
.hero-cta { 
    position: relative;
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    gap: 15px; 
    padding: 16px 45px !important;
    border-radius: 50px; 
    text-decoration: none; 
    color: #fff; 
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Borde gradiente neón para Hero CTA */
.hero-cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        rgba(120, 119, 198, 0.8),
        rgba(255, 119, 198, 0.8),
        rgba(79, 172, 254, 0.8),
        rgba(120, 119, 198, 0.8)
    );
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -2;
    animation: gradient-shift 4s ease infinite;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

/* Fondo interno */
.hero-cta::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 50px;
    z-index: -1;
    transition: background 0.4s ease;
}

.hero-cta:hover { 
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 8px 30px rgba(120, 119, 198, 0.4),
        0 0 40px rgba(255, 119, 198, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cta:hover::before {
    opacity: 1;
    animation-duration: 2s;
}

.hero-cta:hover::after {
    background: rgba(20, 20, 20, 0.9);
}

/* Scroll Indicator - Futuristic Style */
.scroll-ind { 
    position: absolute; 
    bottom: 40px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 12px; 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    user-select: none;
}

/* Contenedor del mouse */
.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    transition: border-color 0.3s ease;
}



/* Rueda del mouse animada */
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: linear-gradient(180deg, #667eea, #f093fb);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

/* Flechas animadas debajo */
.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.scroll-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(102, 126, 234, 0.6);
    animation: scrollArrow 2s ease-in-out infinite;
    opacity: 0;
}

.scroll-arrow:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrow:nth-child(2) {
    animation-delay: 0.3s;
}

.scroll-arrow:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes scrollWheel {
    0%, 100% { 
        transform: translateY(0); 
        opacity: 1;
    }
    50% { 
        transform: translateY(12px); 
        opacity: 0.3;
    }
}

@keyframes scrollArrow {
    0%, 100% { 
        opacity: 0;
        transform: translateY(-5px);
    }
    50% { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-ind {
        bottom: 30px;
    }
    
    .scroll-mouse {
        width: 22px;
        height: 34px;
    }
}

/* ========================================
   SECTION LABELS & HEADERS
   ======================================== */
.section-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    margin-bottom: 80px; 
}

.section-label { 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    opacity: 0.5; 
}

.section-title { 
    font-size: 72px; 
    font-weight: 700; 
    letter-spacing: -3px; 
}

.view-all { 
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.view-all:hover {
    opacity: 0.7;
}

/* ========================================
   PORTFOLIO GRID SECTION - COMING SOON MODE
   ======================================== */
.work { 
    padding: 180px 50px 150px; 
}

/* Grid principal: 3 columnas x 3 filas */
.portfolio-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

/* Card de portfolio - MODO COMING SOON */
.portfolio-card { 
    position: relative; 
    overflow: hidden; 
    border-radius: 20px; 
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.portfolio-card:hover { 
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.1);
}

/* Imagen de portfolio */
.portfolio-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Placeholder cuando no hay imagen */
.portfolio-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Skeleton Screen - Efecto de carga elegante */
.portfolio-skeleton { 
    position: relative;
    height: 280px; 
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #1a1a1a 0%,
        #252525 50%,
        #1a1a1a 100%
    );
    background-size: 200% 200%;
}

/* Shimmer animation */
.skeleton-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.03) 50%,
        transparent 100%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Patrón de puntos sutil */
.portfolio-skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
        circle at 2px 2px,
        rgba(255,255,255,0.03) 1px,
        transparent 0
    );
    background-size: 20px 20px;
}

/* Contenido de la card - COMING SOON */
.portfolio-content {
    padding: 25px;
    background: #111;
    text-align: center;
}

/* Categoría eliminada - Reemplazado por Estado */
.portfolio-estado { 
    font-size: 10px; 
    letter-spacing: 2px; 
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

.portfolio-estado.publicado {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.portfolio-estado.borrador {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.portfolio-name { 
    font-size: 20px; 
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}

/* Estado coming-soon */
.portfolio-card.coming-soon {
    cursor: default;
}

.portfolio-card.coming-soon:hover {
    transform: translateY(-5px);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about { 
    padding: 150px 50px; 
    background: #111; 
}

.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 100px; 
    align-items: center; 
}

.about-image { 
    height: 600px; 
    background: linear-gradient(135deg, #667eea, #764ba2); 
    border-radius: 30px; 
    position: relative; 
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Imagen personal sobre el gradiente */
.about-img {
    width: 95%;
    height: 105%;
    object-fit: contain;
    object-position: center bottom;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    filter: drop-shadow(0 0 30px rgba(120, 119, 198, 0.5))
            drop-shadow(0 0 60px rgba(255, 119, 198, 0.3));
    transition: all 0.4s ease;
}

/* Efecto hover en la imagen */
.about-image:hover .about-img {
    filter: drop-shadow(0 0 40px rgba(120, 119, 198, 0.7))
            drop-shadow(0 0 80px rgba(255, 119, 198, 0.5));
    transform: scale(1.02);
}

/* Patrón de fondo decorativo */
.about-image::after { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>'); 
    background-size: 50px;
    z-index: 1;
}

.about-content h3 { 
    font-size: 48px; 
    font-weight: 700; 
    margin-bottom: 30px; 
    letter-spacing: -2px; 
}

.about-content p { 
    font-size: 18px; 
    line-height: 1.8; 
    opacity: 0.8; 
    margin-bottom: 30px; 
}

.skills { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
    margin-top: 40px; 
}

.skill { 
    padding: 12px 24px; 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 30px; 
    font-size: 14px; 
    transition: all 0.3s; 
}

.skill:hover { 
    background: #fff; 
    color: #0a0a0a; 
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services { 
    padding: 150px 50px; 
}

.services-list { 
    margin-top: 80px; 
}

.service-item { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding: 40px 0; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    transition: all 0.3s; 
}

.service-item:hover { 
    padding-left: 20px; 
}

.service-item:last-child { 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}

/* Layout con icono para Automatización */
.service-info {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.service-item:hover .service-icon {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.05);
}

.service-text {
    flex: 1;
}

.service-name { 
    font-size: 48px; 
    font-weight: 600; 
    letter-spacing: -2px; 
    margin-bottom: 12px;
}

.service-desc { 
    max-width: 500px; 
    opacity: 0.6; 
    font-size: 16px; 
    line-height: 1.6;
}

.service-arrow { 
    font-size: 32px; 
    transition: transform 0.3s; 
}

.service-item:hover .service-arrow { 
    transform: translateX(10px); 
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    padding: 150px 50px;
    background: #0a0a0a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card de precio */
.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Card destacada (Recomendado) */
.pricing-featured {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(255, 119, 198, 0.1));
    border-color: rgba(120, 119, 198, 0.3);
}

.pricing-featured:hover {
    border-color: rgba(255, 119, 198, 0.5);
    box-shadow: 0 30px 60px rgba(120, 119, 198, 0.2);
}

/* Badge Recomendado */
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 20px;
}

/* Header del plan */
.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-featured .price-amount {
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 14px;
    opacity: 0.6;
    text-transform: lowercase;
}

/* Precio destacado (anclaje) */
.pricing-price-featured {
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-original {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.4;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: -0.5px;
}

.price-current {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

/* Lista de features */
.pricing-features {
    flex: 1;
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    opacity: 0.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 24px;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li strong {
    color: #fff;
    opacity: 1;
}

/* Botón de acción */
.pricing-btn {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Botón primario (plan destacado) */
.pricing-btn-primary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3));
    border-color: rgba(102, 126, 234, 0.5);
}

.pricing-btn-primary:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(240, 147, 251, 0.5));
    border-color: rgba(240, 147, 251, 0.8);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact { 
    padding: 150px 50px; 
    text-align: center; 
}

.contact-title { 
    font-size: 96px; 
    font-weight: 700; 
    letter-spacing: -5px; 
    margin-bottom: 50px; 
}

.contact-title .outline { 
    -webkit-text-stroke: 2px #fff; 
    color: transparent; 
}

.contact-links { 
    display: flex; 
    justify-content: center; 
    gap: 50px; 
    margin-bottom: 80px; 
}

.contact-link { 
    font-size: 24px; 
    text-decoration: none; 
    color: #fff; 
    position: relative; 
}

.contact-link::after { 
    content: ''; 
    position: absolute; 
    bottom: -10px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: #fff; 
    transition: width 0.3s; 
}

.contact-link:hover::after { 
    width: 100%; 
}

/* CTA WhatsApp - Reemplaza social links */
.contact-cta {
    display: flex;
    justify-content: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #25d366, #128c7e);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: #25d366;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover::before {
    opacity: 0.15;
}

.whatsapp-btn:hover svg {
    fill: #fff;
    transform: scale(1.1);
}

/* ========================================
   LOGIN PAGE
   ======================================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
}

.login-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 40px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.login-error {
    display: none;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 13px;
}

.login-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.login-back {
    display: inline-block;
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-back:hover {
    color: #fff;
}

/* ========================================
   ADMIN PAGE
   ======================================== */
.admin-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
}

.admin-container {
    text-align: center;
}

.admin-container h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 1px;
}

.admin-back {
    display: inline-block;
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.admin-back:hover {
    color: #fff;
}

/* ========================================
   CLIENTE PAGE
   ======================================== */
.cliente-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
}

.cliente-container {
    text-align: center;
}

.cliente-container h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 1px;
}

.cliente-back {
    display: inline-block;
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cliente-back:hover {
    color: #fff;
}

/* ========================================
   WIZARD - EMBUDO DE VENTAS
   ======================================== */
.wizard-page {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 100px 20px 40px;
    margin: 0;
}

.wizard-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Header del Wizard */
.wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.wizard-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Progress Bar */
.wizard-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: linear-gradient(135deg, #667eea, #f093fb);
    border-color: transparent;
}

.progress-step.completed {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.progress-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

/* Pasos del Wizard */
.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
    text-align: center;
}

.wizard-subtitle {
    font-size: 16px;
    opacity: 0.6;
    text-align: center;
    margin-bottom: 40px;
}

/* Formulario Wizard */
.wizard-form {
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.wizard-form .form-group {
    margin-bottom: 20px;
}

.wizard-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.wizard-form input[type="text"],
.wizard-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.wizard-form input[type="text"]::placeholder,
.wizard-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.wizard-form input[type="text"]:focus,
.wizard-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.wizard-form textarea {
    resize: vertical;
    min-height: 150px;
}

.wizard-form input.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.radio-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-check {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-check {
    border-color: #667eea;
    background: #667eea;
}

.radio-option input[type="radio"]:checked + .radio-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.radio-option input[type="radio"]:checked ~ .radio-label {
    color: #fff;
}

.radio-label {
    font-size: 14px;
    font-weight: 500;
}

/* Option Cards (Paso 2) */
.option-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-card {
    display: block;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-card input[type="radio"]:checked + .option-icon,
.option-card input[type="radio"]:checked ~ .option-icon {
    transform: scale(1.1);
}

.option-card input[type="radio"]:checked ~ h3,
.option-card input[type="radio"]:checked ~ p {
    color: #fff;
}

.option-icon {
    font-size: 32px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.option-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.option-card p {
    font-size: 14px;
    opacity: 0.6;
    transition: color 0.3s ease;
}

/* Botones Wizard */
.wizard-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.wizard-btn {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.wizard-btn-primary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3));
    border-color: rgba(102, 126, 234, 0.5);
}

.wizard-btn-primary:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(240, 147, 251, 0.5));
    border-color: rgba(240, 147, 251, 0.8);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.wizard-btn-back {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
}

.wizard-btn-back:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Recomendación (Paso 4) */
.recommendation-container {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
}

.recommendation-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #f093fb);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 20px;
}

.recommendation-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.recommendation-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.recommendation-price span {
    font-size: 16px;
    font-weight: 500;
    opacity: 1;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    margin-left: 8px;
}

.recommendation-desc {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 30px;
    line-height: 1.6;
}

.recommendation-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.recommendation-features li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 24px;
}

.recommendation-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.wizard-btn-confirm {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2));
    border-color: rgba(37, 211, 102, 0.4);
    font-size: 15px;
}

.wizard-btn-confirm:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(18, 140, 126, 0.3));
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.25);
}

/* Procesando Pago (Paso 5) */
.payment-processing {
    text-align: center;
    padding: 80px 20px;
}

.payment-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #667eea;
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.payment-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.payment-status {
    font-size: 14px;
    opacity: 0.6;
}

/* ========================================
   SELECTION CARDS (Nuevo Estilo)
   ======================================== */
.selection-cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.selection-card {
    flex: 1;
    min-width: 120px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.selection-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.selection-card.selected {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.selection-icon {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
}

.selection-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

/* Diagnostic Cards (Nuevo Estilo) */
.diagnostic-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.diagnostic-card {
    padding: 28px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.diagnostic-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.diagnostic-card.selected {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.diagnostic-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.diagnostic-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.diagnostic-card p {
    font-size: 14px;
    opacity: 0.6;
    margin: 0;
}

/* Password Error */
.password-error {
    display: none;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 13px;
    margin-top: 15px;
}

/* ========================================
   PÁGINA DE GRACIAS
   ======================================== */
.gracias-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 40px 20px;
}

.gracias-container {
    text-align: center;
    max-width: 500px;
}

.gracias-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.gracias-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gracias-message {
    font-size: 16px;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 40px;
}

.gracias-highlight {
    color: #667eea;
    font-weight: 500;
}

.gracias-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.5);
    border-radius: 30px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gracias-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(240, 147, 251, 0.5));
    border-color: rgba(240, 147, 251, 0.8);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

/* ========================================
   NAV LOGIN BUTTON
   ======================================== */
.nav-login {
    display: inline-block !important;
    padding: 14px 32px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
}

.nav-login:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* ========================================
   FOOTER
   ======================================== */
footer { 
    padding: 50px; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 14px; 
    opacity: 0.6; 
}

/* ========================================
   RESPONSIVE - MOBILE FIRST
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 80px;
    }
    
    .section-title {
        font-size: 56px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .portfolio-image {
        height: 240px;
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .contact-title {
        font-size: 72px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Mostrar menú hamburguesa */
    .menu-toggle {
        display: flex;
    }
    
    /* Ajustes menú móvil */
    .mobile-link {
        font-size: 36px;
    }
    
    .mobile-menu-content {
        max-width: 100%;
        padding: 100px 30px 50px;
    }
    
    /* Botón CTA móvil adaptado */
    .btn-cta-mobile {
        width: 100%;
        justify-content: center;
        margin-top: 24px;
        padding: 18px 32px !important;
        letter-spacing: 2px !important;
    }
    
    .hero-title {
        font-size: 48px;
        letter-spacing: -2px;
    }
    
    .hero-desc {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .work {
        padding: 100px 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .portfolio-name {
        font-size: 20px;
    }
    
    .work-item:nth-child(3) {
        grid-column: span 1;
    }
    
    .work-image,
    .work-item:nth-child(3) .work-image {
        height: 400px;
    }
    
    .about {
        padding: 100px 30px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        height: 400px;
    }
    
    .about-content h3 {
        font-size: 32px;
    }
    
    .services {
        padding: 100px 30px;
    }
    
    .service-name {
        font-size: 28px;
    }
    
    .service-desc {
        display: none;
    }
    
    /* Responsive para servicio con icono */
    .service-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Pricing Responsive */
    .pricing {
        padding: 100px 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-card {
        padding: 35px 25px;
    }

    .pricing-name {
        font-size: 22px;
    }

    .price-amount {
        font-size: 40px;
    }
    
    .contact {
        padding: 100px 30px;
    }
    
    .contact-title {
        font-size: 40px;
        letter-spacing: -2px;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-link {
        font-size: 18px;
    }

    /* WhatsApp Button Mobile */
    .whatsapp-btn {
        padding: 16px 28px;
        font-size: 14px;
        letter-spacing: 1px;
    }

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

    /* Login Mobile */
    .login-box {
        padding: 40px 25px;
    }

    .login-title {
        font-size: 28px;
    }

    .login-subtitle {
        font-size: 13px;
    }

    .form-group input {
        padding: 14px 16px;
    }
    
    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .work-name {
        font-size: 24px;
    }

    /* Wizard Mobile */
    .wizard-page {
        padding: 20px 15px;
    }

    .wizard-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .wizard-title {
        font-size: 28px;
    }

    .wizard-subtitle {
        font-size: 14px;
    }
    
    /* Hero subtitle padding en móvil */
    .hero-subtitle {
        padding: 0 20px;
        letter-spacing: 3px;
        font-size: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-option {
        width: 100%;
    }

    .option-card {
        padding: 20px;
    }

    .wizard-buttons {
        flex-direction: column-reverse;
    }

    .wizard-btn {
        width: 100%;
        text-align: center;
    }

    .recommendation-container {
        padding: 40px 20px;
    }

    .recommendation-title {
        font-size: 24px;
    }

    .recommendation-price {
        font-size: 36px;
    }
}


/* ========================================
   WIZARD SPA - ESTILOS COMPLETOS
   ======================================== */

/* Contenedor principal */
.wizard-page-spa {
    min-height: 100vh;
    padding: 140px 20px 60px !important;
    background: #0a0a0a;
}

.wizard-container-spa {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer dentro del wizard */
.wizard-page-spa footer {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.6;
    background: transparent;
}

/* Header del wizard */
.wizard-header-spa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard-logo-spa {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Indicador de progreso */
.wizard-progress-spa {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-step-spa {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.progress-step-spa.active {
    background: linear-gradient(135deg, #667eea, #f093fb);
    border-color: transparent;
}

.progress-step-spa.completed {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.progress-line-spa {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

/* Pasos del wizard */
.wizard-step-spa {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-title-spa {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
    text-align: center;
    color: #fff;
}

.wizard-subtitle-spa {
    font-size: 16px;
    opacity: 0.6;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

/* Formularios */
.wizard-form-spa {
    margin-bottom: 40px;
}

.form-row-spa {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-spa {
    margin-bottom: 20px;
}

.wizard-form-spa label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.wizard-form-spa input,
.wizard-form-spa textarea {
    width: 100%;
    padding: 16px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.wizard-form-spa input::placeholder,
.wizard-form-spa textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.wizard-form-spa input:focus,
.wizard-form-spa textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #222;
}

/* Cards de selección */
.selection-cards-spa {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.selection-card-spa {
    flex: 1;
    min-width: 120px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.selection-card-spa:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.selection-card-spa.selected {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.selection-icon-spa {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
}

.selection-label-spa {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Botones */
.wizard-btn-spa {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-btn-spa:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.wizard-btn-next-spa {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(240, 147, 251, 0.8));
    border-color: transparent;
}

.wizard-btn-next-spa:hover {
    background: linear-gradient(135deg, #667eea, #f093fb);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.wizard-btn-back-spa {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
}

.wizard-buttons-spa {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Tarjetas de selección vertical (paso 2) */
.selection-cards-vertical {
    flex-direction: column;
    gap: 15px;
}

.selection-card-large {
    flex-direction: row;
    align-items: center;
    padding: 20px 25px;
    text-align: left;
    gap: 20px;
}

.selection-card-large .selection-icon-spa {
    font-size: 32px;
    margin-bottom: 0;
}

.selection-card-large .selection-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.selection-card-large .selection-label-spa {
    font-size: 18px;
    font-weight: 600;
}

.selection-card-large .selection-desc-spa {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
}

/* Textarea en wizard */
.wizard-form-spa textarea {
    width: 100%;
    padding: 15px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.wizard-form-spa textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Mensaje de error de email */
.email-error-message {
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.email-error-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.email-error-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.email-error-message a {
    color: #667eea;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.email-error-message a:hover {
    opacity: 0.8;
}

/* Botón deshabilitado */
.wizard-btn-next-spa:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.wizard-btn-next-spa:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Animación fadeIn */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contenedor de recomendación */
.recommendation-container-spa {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
}

.recommendation-badge-spa {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #f093fb);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 20px;
}

.recommendation-title-spa {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: -1px;
}

.recommendation-price-spa {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recommendation-price-spa span {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.7;
}

/* Periodicidad del precio - visibilidad forzada */
.price-period-spa {
    display: inline-block !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    margin-left: 5px !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.7) !important;
    text-fill-color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Variante para pago único */
.price-period-unique {
    font-size: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.6) !important;
}

.recommendation-desc-spa {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #fff;
}

.recommendation-features-spa {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.recommendation-features-spa li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 24px;
    color: #fff;
}

.recommendation-features-spa li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.wizard-btn-confirm-spa {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.8), rgba(18, 140, 126, 0.8));
    border-color: transparent;
    font-size: 15px;
}

.wizard-btn-confirm-spa:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-page-spa {
        padding: 80px 15px 40px;
    }
    
    .wizard-title-spa {
        font-size: 28px;
    }
    
    .form-row-spa {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .selection-cards-spa {
        flex-direction: column;
    }
    
    .wizard-buttons-spa {
        flex-direction: column;
        align-items: center;
    }
    
    .wizard-btn-spa {
        width: 100%;
        text-align: center;
    }
    
    .recommendation-container-spa {
        padding: 40px 20px;
    }
    
    .recommendation-title-spa {
        font-size: 24px;
    }
    
    .recommendation-price-spa {
        font-size: 36px;
    }
}
