/* ========================================
   APLICACIONES WEB - ESTILOS TECNOLÓGICOS
   Diseño futurista con efectos neón
======================================== */

/* Variables de color tecnológico */
:root {
    --tech-bg: #0a0a0f;
    --tech-bg-secondary: #12121a;
    --tech-surface: #1a1a24;
    --tech-border: #2a2a3a;
    --tech-primary: #00f0ff;
    --tech-secondary: #7c3aed;
    --tech-accent: #f72585;
    --tech-success: #39ff14;
    --tech-gradient: linear-gradient(135deg, #00f0ff 0%, #7c3aed 50%, #f72585 100%);
    --tech-glow: 0 0 20px rgba(0, 240, 255, 0.5);
    --tech-glow-purple: 0 0 20px rgba(124, 58, 237, 0.5);
    --tech-glow-pink: 0 0 20px rgba(247, 37, 133, 0.5);
}

/* Prevenir scroll horizontal en toda la página */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Estilos base para la página de apps */
.apps-page {
    background-color: var(--tech-bg);
    color: #e0e0e0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.apps-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(247, 37, 133, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Partículas de fondo */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particles-bg::before,
.particles-bg::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--tech-primary);
    border-radius: 50%;
    box-shadow: 
        100vw 20vh 0 0 var(--tech-primary),
        20vw 80vh 0 1px var(--tech-secondary),
        70vw 40vh 0 0 var(--tech-primary),
        35vw 15vh 0 1px var(--tech-accent),
        90vw 70vh 0 0 var(--tech-secondary),
        50vw 90vh 0 1px var(--tech-primary),
        15vw 50vh 0 0 var(--tech-accent),
        80vw 10vh 0 1px var(--tech-secondary),
        5vw 30vh 0 0 var(--tech-primary);
    animation: particles 20s linear infinite;
}

.particles-bg::after {
    animation-delay: -10s;
    opacity: 0.5;
}

@keyframes particles {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.5; }
}

/* Header tecnológico */
.header--tech {
    background-color: rgba(10, 10, 15, 0.9) !important;
    border-bottom: 1px solid var(--tech-border) !important;
    backdrop-filter: blur(20px);
}

.logo__text--tech {
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
}

.nav__link--tech {
    color: #a0a0a0 !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav__link--tech:hover {
    color: var(--tech-primary) !important;
    text-shadow: 0 0 10px var(--tech-primary);
}

.nav__link--tech::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--tech-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav__link--tech:hover::after {
    width: 100%;
}

/* Botón neón */
.btn--neon {
    background: transparent !important;
    border: 2px solid var(--tech-primary) !important;
    color: var(--tech-primary) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-shadow: 0 0 10px var(--tech-primary);
    box-shadow: var(--tech-glow), inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.btn--neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn--neon:hover {
    background: rgba(0, 240, 255, 0.15) !important;
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.6),
        0 0 60px rgba(0, 240, 255, 0.3),
        inset 0 0 30px rgba(0, 240, 255, 0.2);
}

.btn--neon:hover::before {
    left: 100%;
}

.btn--outline-neon {
    background: transparent;
    border: 2px solid var(--tech-secondary);
    color: var(--tech-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn--outline-neon:hover {
    background: rgba(124, 58, 237, 0.15);
    box-shadow: var(--tech-glow-purple);
    color: var(--tech-secondary);
}

.btn__icon {
    margin-right: 0.5rem;
}

/* Hero de Apps */
.hero-apps {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 0 4rem;
    z-index: 1;
    overflow: hidden;
    width: 100%;
}

.hero-apps__overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.7) 50%, var(--tech-bg) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,240,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: -1;
}

.hero-apps__content {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 100%;
    padding: 0 2rem;
}

.hero-apps__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Efecto Glitch */
.glitch {
    position: relative;
    animation: glitch-skew 2s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tech-bg);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--tech-accent);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-1 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--tech-primary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    5% { clip: rect(25px, 9999px, 87px, 0); }
    10% { clip: rect(80px, 9999px, 45px, 0); }
    15% { clip: rect(15px, 9999px, 95px, 0); }
    20% { clip: rect(105px, 9999px, 55px, 0); }
    25% { clip: rect(35px, 9999px, 125px, 0); }
    30% { clip: rect(75px, 9999px, 35px, 0); }
    35% { clip: rect(5px, 9999px, 85px, 0); }
    40% { clip: rect(95px, 9999px, 45px, 0); }
    45% { clip: rect(45px, 9999px, 105px, 0); }
    50% { clip: rect(55px, 9999px, 25px, 0); }
    55% { clip: rect(115px, 9999px, 75px, 0); }
    60% { clip: rect(25px, 9999px, 95px, 0); }
    65% { clip: rect(85px, 9999px, 15px, 0); }
    70% { clip: rect(45px, 9999px, 65px, 0); }
    75% { clip: rect(105px, 9999px, 35px, 0); }
    80% { clip: rect(15px, 9999px, 115px, 0); }
    85% { clip: rect(75px, 9999px, 55px, 0); }
    90% { clip: rect(35px, 9999px, 85px, 0); }
    95% { clip: rect(95px, 9999px, 25px, 0); }
    100% { clip: rect(55px, 9999px, 105px, 0); }
}

@keyframes glitch-2 {
    0% { clip: rect(15px, 9999px, 95px, 0); }
    5% { clip: rect(85px, 9999px, 35px, 0); }
    10% { clip: rect(55px, 9999px, 115px, 0); }
    15% { clip: rect(105px, 9999px, 45px, 0); }
    20% { clip: rect(25px, 9999px, 75px, 0); }
    25% { clip: rect(65px, 9999px, 25px, 0); }
    30% { clip: rect(45px, 9999px, 95px, 0); }
    35% { clip: rect(115px, 9999px, 55px, 0); }
    40% { clip: rect(35px, 9999px, 85px, 0); }
    45% { clip: rect(75px, 9999px, 15px, 0); }
    50% { clip: rect(95px, 9999px, 65px, 0); }
    55% { clip: rect(5px, 9999px, 125px, 0); }
    60% { clip: rect(85px, 9999px, 45px, 0); }
    65% { clip: rect(55px, 9999px, 105px, 0); }
    70% { clip: rect(25px, 9999px, 75px, 0); }
    75% { clip: rect(95px, 9999px, 35px, 0); }
    80% { clip: rect(65px, 9999px, 115px, 0); }
    85% { clip: rect(15px, 9999px, 85px, 0); }
    90% { clip: rect(105px, 9999px, 55px, 0); }
    95% { clip: rect(45px, 9999px, 25px, 0); }
    100% { clip: rect(75px, 9999px, 95px, 0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(0.5deg); }
    20% { transform: skew(-0.5deg); }
    30% { transform: skew(0.3deg); }
    40% { transform: skew(-0.3deg); }
    50% { transform: skew(0deg); }
    60% { transform: skew(0.2deg); }
    70% { transform: skew(-0.2deg); }
    80% { transform: skew(0.4deg); }
    90% { transform: skew(-0.4deg); }
    100% { transform: skew(0deg); }
}

/* Texto con gradiente */
.gradient-text {
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-apps__subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #a0a0a0;
    max-width: none;
    margin: 0 auto;
    line-height: 1.6;
    width: fit-content;
}

/* Efecto de escritura */
.typing-effect {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid var(--tech-primary);
    white-space: nowrap;
    width: 0;
    animation: 
        typing 4.5s steps(70, end) forwards,
        blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { 
        width: 0; 
    }
    to { 
        width: 75ch;
    }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--tech-primary); }
}

/* ========================================
   CARRUSEL
======================================== */
.carousel {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.carousel__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.carousel__slide {
    min-width: calc(100% - 2rem);
    flex-shrink: 0;
    opacity: 0.3;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.carousel__slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel__card {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.carousel__card:hover {
    border-color: var(--tech-primary);
    box-shadow: var(--tech-glow);
}

.carousel__image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--tech-bg-secondary) 0%, var(--tech-surface) 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border: 1px dashed var(--tech-border);
    position: relative;
    overflow: hidden;
}

.carousel__image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 240, 255, 0.1) 50%, transparent 60%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    color: var(--tech-primary);
}

.placeholder-icon svg {
    width: 100%;
    height: 100%;
}

.carousel__image-placeholder span {
    color: #606070;
    font-size: 0.875rem;
}

.carousel__card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.carousel__card p {
    color: #a0a0a0;
    line-height: 1.6;
}

.carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    color: var(--tech-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel__btn:hover {
    background: var(--tech-primary);
    color: var(--tech-bg);
    box-shadow: var(--tech-glow);
}

.carousel__btn svg {
    width: 24px;
    height: 24px;
}

.carousel__dots {
    display: flex;
    gap: 0.75rem;
}

.carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--tech-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel__dot.active {
    background: var(--tech-primary);
    box-shadow: var(--tech-glow);
}

.carousel__dot:hover {
    background: var(--tech-secondary);
}

/* ========================================
   SECCIONES TECNOLÓGICAS
======================================== */
.section-tech {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.section-tech:nth-child(even) {
    background: var(--tech-bg-secondary);
}

.section-tech__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tech__tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--tech-primary);
    border-radius: 999px;
    color: var(--tech-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-tech__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-tech__subtitle {
    font-size: 1.125rem;
    color: #808090;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Apps */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Cards de Apps */
.app-card {
    position: relative;
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.app-card__glow {
    position: absolute;
    inset: -2px;
    background: var(--tech-gradient);
    border-radius: 18px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
}

.app-card:hover .app-card__glow {
    opacity: 1;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.app-card__image {
    padding: 1.5rem 1.5rem 0;
}

.image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--tech-border);
    position: relative;
    overflow: hidden;
}

.placeholder-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

.image-placeholder span {
    color: #606070;
    font-size: 1.5rem;
    z-index: 1;
}

/* Variantes de placeholders */
.image-placeholder--enterprise {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(0, 240, 255, 0.05) 100%);
}

.image-placeholder--enterprise .placeholder-pulse {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
}

.image-placeholder--commerce {
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.image-placeholder--commerce .placeholder-pulse {
    background: radial-gradient(circle, rgba(247, 37, 133, 0.3) 0%, transparent 70%);
}

.image-placeholder--startup {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1) 0%, rgba(0, 240, 255, 0.05) 100%);
}

.image-placeholder--startup .placeholder-pulse {
    background: radial-gradient(circle, rgba(57, 255, 20, 0.3) 0%, transparent 70%);
}

.app-card__content {
    padding: 1.5rem;
}

.app-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.app-card__description {
    color: #909090;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.app-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-tech {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--tech-primary);
    font-weight: 500;
}

/* ========================================
   SECCIÓN CTA
======================================== */
.section-cta {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.cta-box {
    position: relative;
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
}

.cta-box__glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box__content {
    position: relative;
    z-index: 1;
}

.cta-box__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-box__text {
    color: #909090;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-box__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-box__decoration {
    position: relative;
    width: 200px;
    height: 200px;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape--1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tech-primary), var(--tech-secondary));
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.shape--2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tech-secondary), var(--tech-accent));
    top: 50%;
    right: 10%;
    animation-delay: -2s;
}

.shape--3 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--tech-accent), var(--tech-primary));
    bottom: 10%;
    left: 40%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* ========================================
   ANIMACIONES DE ENTRADA
======================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación de entrada para secciones */
.section-tech__header,
.apps-grid {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.section-tech__header {
    animation-delay: 0.2s;
}

.apps-grid {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ========================================
   FOOTER TECNOLÓGICO
======================================== */
.footer--tech {
    background-color: var(--tech-bg-secondary) !important;
    border-top: 1px solid var(--tech-border);
    padding: 0.75rem 0 0.5rem;
}

.footer--tech .footer__logo {
    font-size: 2.5rem;
}

.footer--tech .footer__tagline {
    color: #9090a8;
}

.footer--tech .footer__copyright,
.footer--tech .footer__credits {
    color: #7878a0;
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-bottom: 0.4rem;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}

.footer--tech .footer__bottom {
    border-top: none;
}

.footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.footer__nav-link {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
}

.footer__nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0.9rem;
    right: 0.9rem;
    height: 1px;
    background: var(--tech-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.footer__nav-link:hover {
    color: var(--tech-primary);
    background: rgba(0, 240, 255, 0.06);
}

.footer__nav-link:hover::after {
    transform: scaleX(1);
}

.footer__nav-link--cta {
    color: var(--tech-primary);
    border: 1px solid rgba(0, 240, 255, 0.35);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
    margin-left: 0.5rem;
}

.footer__nav-link--cta:hover {
    background: rgba(0, 240, 255, 0.12);
    box-shadow: var(--tech-glow);
    color: var(--tech-primary);
}

.footer__nav-link--cta::after {
    display: none;
}

/* ========================================
   RESPONSIVE
======================================== */

/* Tablets grandes (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-apps {
        min-height: 85vh;
        padding: 7rem 0 3rem;
    }
    
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem;
    }
    
    .cta-box__actions {
        justify-content: center;
    }
    
    .cta-box__decoration {
        display: none;
    }
    
    .section-tech {
        padding: 4rem 0;
    }
}

/* Tablets medianas y pequeñas (481px - 768px / 7 pulgadas aprox) */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    /* Header y navegación móvil */
    .header--tech {
        padding: 0.75rem 0;
    }
    
    .header__content {
        padding: 0;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .nav__list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--tech-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 1rem;
        display: none;
        gap: 0.5rem;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav__list.active {
        display: flex;
    }
    
    .nav__link {
        width: 100%;
        padding: 0.875rem 1rem;
        text-align: left;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav__link:hover {
        background-color: rgba(0, 240, 255, 0.1);
    }
    
    /* Botón de contacto en menú móvil */
    .nav__link.btn--neon {
        background-color: #1e40af !important;
        border: 2px solid #1e40af !important;
        color: #ffffff !important;
        box-shadow: none !important;
        text-shadow: none !important;
        margin-top: 0.75rem;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }
    
    .nav__link.btn--neon:hover {
        background-color: #1e3a8a !important;
        box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4) !important;
        transform: none !important;
    }
    
    /* Hero section optimizado */
    .hero-apps {
        min-height: 75vh;
        padding: 5rem 0 3rem;
    }
    
    .hero-apps__content {
        padding: 0 1.5rem;
        margin-bottom: 3rem;
    }
    
    .hero-apps__title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 1.25rem;
    }
    
    .hero-apps__subtitle {
        font-size: clamp(1rem, 3vw, 1.25rem);
        max-width: 100%;
    }
    
    /* Efecto typing desactivado en móvil */
    .typing-effect {
        white-space: normal;
        border-right: none;
        animation: none;
        width: auto;
    }
    
    /* Efecto glitch desactivado en móvil */
    .glitch::before,
    .glitch::after {
        display: none;
    }
    
    /* Carrusel optimizado */
    .carousel {
        max-width: 100%;
        padding: 1.5rem 0;
        overflow: hidden;
    }
    
    .carousel__track {
        gap: 1rem;
    }
    
    .carousel__slide {
        min-width: calc(100% - 1rem);
    }
    
    .carousel__card {
        padding: 1.5rem;
    }
    
    .carousel__card h3 {
        font-size: 1.25rem;
    }
    
    .carousel__card p {
        font-size: 0.9375rem;
    }
    
    .carousel__image-placeholder {
        height: 160px;
    }
    
    .carousel__controls {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .carousel__btn {
        width: 44px;
        height: 44px;
    }
    
    /* Grid de apps */
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-card__image {
        padding: 1.25rem 1.25rem 0;
    }
    
    .image-placeholder {
        height: 160px;
    }
    
    .app-card__content {
        padding: 1.25rem;
    }
    
    .app-card__title {
        font-size: 1.125rem;
    }
    
    .app-card__description {
        font-size: 0.9375rem;
    }
    
    /* Secciones */
    .section-tech {
        padding: 4rem 0;
    }
    
    .section-tech__header {
        margin-bottom: 2.5rem;
    }
    
    .section-tech__title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .section-tech__subtitle {
        font-size: 1rem;
    }
    
    /* CTA Box */
    .cta-box {
        padding: 2rem;
        gap: 2rem;
    }
    
    .cta-box__title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .cta-box__text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-box__actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .cta-box__actions .btn {
        width: 100%;
    }
    
    /* Footer */
    .footer--tech .footer__logo {
        font-size: 2rem;
    }
    
    .footer__nav-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Tablets en modo landscape */
@media (max-width: 900px) and (orientation: landscape) {
    .hero-apps {
        min-height: 100vh;
        padding: 5rem 0 2rem;
    }
    
    .hero-apps__content {
        margin-bottom: 2rem;
    }
    
    .section-tech {
        padding: 3rem 0;
    }
    
    .carousel {
        padding: 1rem 0;
    }
    
    .carousel__card {
        padding: 1.25rem;
    }
    
    .carousel__image-placeholder {
        height: 140px;
    }
}

/* Smartphones (4.7 - 6 pulgadas / 375px - 480px) */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    /* Header */
    .header__content {
        padding: 0.75rem 0;
    }
    
    .logo__text--tech {
        font-size: 1.5rem;
    }
    
    .nav__list {
        padding: 0.875rem;
    }
    
    .nav__link {
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .nav__link.btn--neon {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    /* Hero section */
    .hero-apps {
        min-height: 70vh;
        padding: 4rem 0 2rem;
    }
    
    .hero-apps__content {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-apps__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-apps__subtitle {
        font-size: clamp(0.9375rem, 3vw, 1.125rem);
        line-height: 1.5;
    }
    
    /* Carrusel */
    .carousel {
        padding: 1rem 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .carousel__track {
        gap: 0.5rem;
    }
    
    .carousel__slide {
        min-width: calc(100% - 1rem);
    }
    
    .carousel__card {
        padding: 1.25rem;
    }
    
    .carousel__card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .carousel__card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .carousel__image-placeholder {
        height: 140px;
        gap: 0.75rem;
    }
    
    .placeholder-icon {
        width: 48px;
        height: 48px;
    }
    
    .carousel__image-placeholder span {
        font-size: 0.8125rem;
    }
    
    .carousel__controls {
        gap: 0.75rem;
        margin-top: 1.25rem;
    }
    
    .carousel__btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel__btn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel__dot {
        width: 10px;
        height: 10px;
    }
    
    /* Secciones */
    .section-tech {
        padding: 3rem 0;
    }
    
    .section-tech__header {
        margin-bottom: 2rem;
    }
    
    .section-tech__tag {
        padding: 0.375rem 0.875rem;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-tech__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .section-tech__subtitle {
        font-size: 0.9375rem;
        padding: 0 1rem;
    }
    
    /* Grid de apps */
    .apps-grid {
        gap: 1.25rem;
    }
    
    .app-card {
        border-radius: 12px;
    }
    
    .app-card__image {
        padding: 1rem 1rem 0;
    }
    
    .image-placeholder {
        height: 140px;
        border-radius: 10px;
    }
    
    .image-placeholder span {
        font-size: 1.25rem;
    }
    
    .app-card__content {
        padding: 1rem;
    }
    
    .app-card__title {
        font-size: 1.0625rem;
        margin-bottom: 0.625rem;
    }
    
    .app-card__description {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 0.875rem;
    }
    
    .app-card__tags {
        gap: 0.375rem;
    }
    
    .tag-tech {
        padding: 0.1875rem 0.625rem;
        font-size: 0.6875rem;
    }
    
    /* CTA Box */
    .cta-box {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
        gap: 1.5rem;
    }
    
    .cta-box__title {
        font-size: clamp(1.375rem, 5vw, 1.75rem);
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .cta-box__text {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    .cta-box__actions {
        gap: 0.625rem;
    }
    
    .btn--neon,
    .btn--outline-neon {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
        border-radius: 8px;
    }
    
    .btn__icon {
        margin-right: 0.375rem;
    }
    
    /* Footer */
    .footer--tech {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer__nav-list {
        gap: 0.15rem;
    }

    .footer__nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
    
    .footer__logo {
        font-size: 1.875rem !important;
    }
    
    .footer__tagline {
        font-size: 0.875rem;
    }
    
    .footer__copyright,
    .footer__credits {
        font-size: 0.8125rem;
    }
}

/* Smartphones muy pequeños (4 pulgadas / 320px - 360px) */
@media (max-width: 360px) {
    :root {
        --container-padding: 0.875rem;
    }
    
    /* Header */
    .logo__text--tech {
        font-size: 1.375rem;
    }
    
    .nav__list {
        padding: 0.75rem;
    }
    
    .nav__link {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .nav__link.btn--neon {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Hero section */
    .hero-apps {
        min-height: 65vh;
        padding: 3rem 0 1.5rem;
    }
    
    .hero-apps__content {
        padding: 0 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-apps__title {
        font-size: 1.625rem;
        margin-bottom: 0.875rem;
        line-height: 1.15;
    }
    
    .hero-apps__subtitle {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    /* Carrusel */
    .carousel {
        padding: 0.75rem 0;
        overflow: hidden;
    }
    
    .carousel__track {
        gap: 0.5rem;
    }
    
    .carousel__slide {
        min-width: calc(100% - 0.5rem);
    }
    
    .carousel__card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .carousel__card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .carousel__card p {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
    
    .carousel__image-placeholder {
        height: 120px;
        gap: 0.5rem;
    }
    
    .placeholder-icon {
        width: 40px;
        height: 40px;
    }
    
    .carousel__image-placeholder span {
        font-size: 0.75rem;
    }
    
    .carousel__controls {
        gap: 0.625rem;
        margin-top: 1rem;
    }
    
    .carousel__btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel__btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel__dot {
        width: 8px;
        height: 8px;
    }
    
    /* Secciones */
    .section-tech {
        padding: 2.5rem 0;
    }
    
    .section-tech__header {
        margin-bottom: 1.75rem;
    }
    
    .section-tech__tag {
        padding: 0.3125rem 0.75rem;
        font-size: 0.6875rem;
        margin-bottom: 0.625rem;
        letter-spacing: 1px;
    }
    
    .section-tech__title {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
    }
    
    .section-tech__subtitle {
        font-size: 0.875rem;
        padding: 0 0.5rem;
    }
    
    /* Grid de apps */
    .apps-grid {
        gap: 1rem;
    }
    
    .app-card {
        border-radius: 10px;
    }
    
    .app-card__image {
        padding: 0.875rem 0.875rem 0;
    }
    
    .image-placeholder {
        height: 120px;
        border-radius: 8px;
    }
    
    .image-placeholder span {
        font-size: 1.125rem;
    }
    
    .app-card__content {
        padding: 0.875rem;
    }
    
    .app-card__title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .app-card__description {
        font-size: 0.8125rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .app-card__tags {
        gap: 0.3125rem;
    }
    
    .tag-tech {
        padding: 0.1875rem 0.5rem;
        font-size: 0.625rem;
    }
    
    /* CTA Box */
    .section-cta {
        padding: 3rem 0;
    }
    
    .cta-box {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        gap: 1.25rem;
    }
    
    .cta-box__title {
        font-size: 1.375rem;
        margin-bottom: 0.625rem;
        line-height: 1.25;
    }
    
    .cta-box__text {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .cta-box__actions {
        gap: 0.5rem;
    }
    
    .btn--neon,
    .btn--outline-neon {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        border-radius: 6px;
    }
    
    .btn__icon {
        margin-right: 0.3125rem;
        font-size: 0.9375rem;
    }
    
    /* Footer */
    .footer--tech {
        padding: 2rem 0 1.25rem;
    }
    
    .footer__content {
        gap: 1rem;
    }
    
    .footer__logo {
        font-size: 1.75rem !important;
    }
    
    .footer__tagline {
        font-size: 0.8125rem;
        margin-top: 0.375rem;
    }
    
    .footer__nav-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer__copyright,
    .footer__credits {
        font-size: 0.75rem;
    }
    
    .footer__bottom {
        padding-top: 0.875rem;
    }
}

/* Touch-friendly ajustes para todos los dispositivos móviles */
@media (max-width: 768px) {
    /* Asegurar que todos los botones y links sean fáciles de tocar */
    .nav__link,
    .carousel__btn,
    .carousel__dot,
    .btn,
    .app-card {
        -webkit-tap-highlight-color: rgba(0, 240, 255, 0.2);
    }
    
    /* Mejorar el área de toque */
    .carousel__btn,
    .nav__toggle {
        min-width: 44px;
        min-height: 44px;
    }
    
    .carousel__dot {
        min-width: 32px;
        min-height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Optimizar rendimiento en móviles */
    .app-card,
    .carousel__slide,
    .nav__list {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
}

/* Orientación landscape específica para smartphones */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-apps {
        min-height: 100vh;
        padding: 3rem 0 1.5rem;
    }
    
    .hero-apps__content {
        margin-bottom: 1.5rem;
    }
    
    .hero-apps__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .section-tech {
        padding: 2.5rem 0;
    }
    
    .carousel__image-placeholder {
        height: 100px;
    }
    
    .image-placeholder {
        height: 100px;
    }
}

/* Reducir animaciones para usuarios que lo prefieran */
@media (prefers-reduced-motion: reduce) {
    .glitch,
    .glitch::before,
    .glitch::after {
        animation: none !important;
    }
    
    .particles-bg::before,
    .particles-bg::after {
        animation: none !important;
    }
    
    .typing-effect {
        animation: none !important;
        border-right: none !important;
        width: auto !important;
    }
    
    .fade-in-up {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .placeholder-pulse {
        animation: none !important;
    }
    
    .shape {
        animation: none !important;
    }
    
    .app-card:hover,
    .carousel__card:hover {
        transform: none !important;
    }
    
    .carousel__slide,
    .nav__list {
        transition: none !important;
    }
}
