* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #00ffff;
    --purple: #8a2be2;
    --dark-1: #0a0a0f;
    --dark-2: #1a1a2e;
    --dark-3: #16213e;
    --white: #ffffff;
    --gray: #a0a0a0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-1);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    isolation: isolate;
}



/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Particles */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    animation: float-particle 15s infinite;
}

.bg-particles .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.bg-particles .particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 2s; background: var(--purple); }
.bg-particles .particle:nth-child(3) { top: 40%; left: 20%; animation-delay: 4s; }
.bg-particles .particle:nth-child(4) { top: 60%; left: 90%; animation-delay: 6s; background: var(--purple); }
.bg-particles .particle:nth-child(5) { top: 80%; left: 30%; animation-delay: 8s; }
.bg-particles .particle:nth-child(6) { top: 30%; left: 60%; animation-delay: 10s; background: var(--purple); }
.bg-particles .particle:nth-child(7) { top: 70%; left: 70%; animation-delay: 12s; }
.bg-particles .particle:nth-child(8) { top: 90%; left: 50%; animation-delay: 14s; background: var(--purple); }

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0.8;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 15, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    color: var(--cyan);
    font-size: 1.5rem;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-img {
    height: 120px;       
    width: auto;         
    display: block;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--cyan);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 30px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--cyan);
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    margin-top: 100px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.title-line {
    display: block;
    color: var(--gray);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.title-highlight {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(0, 255, 255, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--dark-1);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.5), transparent);
}
.hero-visual {
    display: flex;
    justify-content: flex-end; 
    align-items: center;      
    flex: 1;
    position: relative;
    width: 100%;
    height: 400px;
}

.hologram-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: rotate-ring 10s linear infinite;
}

.imgOdin {
    width: 250px;
    margin-right: 50px;
    z-index: 14;
}
@media (max-width: 768px) {
   .imgOdin {
    width: 250px;
    margin-right: 10px;
    z-index: 14;
   }
}

.hologram {
    position: absolute;
    right: 0;
    width: 350px;
    height: 350px;
}
.ring-1 {
    inset: 0;
    border-color: rgba(0, 255, 255, 0.3);
    animation-duration: 8s;
}

.ring-2 {
    inset: 30px;
    border-color: rgba(138, 43, 226, 0.3);
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    inset: 60px;
    border-color: rgba(0, 255, 255, 0.3);
    animation-duration: 10s;
}

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

.hologram-core {
    position: absolute;
    inset: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent);
    box-shadow:
        0 0 60px rgba(0, 255, 255, 0.5),
        0 0 120px rgba(138, 43, 226, 0.3);
    animation: pulse-core 3s ease-in-out infinite;
}

@keyframes pulse-core {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Sections Common */
section {
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--cyan);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title span {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--dark-1), var(--dark-2), var(--dark-1));
}

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

.service-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(20, 20, 35, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.3);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .card-glow {
    opacity: 1;
}
.card-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}


.service-card:hover .card-border {
    opacity: 1;
}

.service-card.featured {
    border-color: rgba(138, 43, 226, 0.3);
}

.service-card.featured .card-glow {
    background: radial-gradient(circle at 50% 0%, rgba(138, 43, 226, 0.15), transparent 70%);
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--cyan);
}

.service-card:hover .service-icon {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features span {
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gray);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--white);
}

.service-link:hover svg {
    transform: translateX(5px);
}
.service-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.feature-btn {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.05));
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    padding: 1px 3px; /* cambia el tamaño de los botones */
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.feature-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.feature-btn:hover::before {
    left: 100%;
}
.feature-btn:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 5px 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0.1));
}
.feature-btn:active {
    transform: translateY(0) scale(0.98);
}
.btn-text {
    position: relative;
    z-index: 2;
}
.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.6), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    border-radius: 50%;
}
.feature-btn:hover .btn-glow {
    width: 100%;
    height: 100%;
}
/* Efecto de partículas flotantes */
.feature-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.feature-btn:hover::after {
    opacity: 1;
    animation: particleFloat 2s ease-in-out infinite;
}

.feature-btn:hover::after {
    opacity: 1;
    animation: particleFloat 2s ease-in-out infinite;
}
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

.service-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    outline: none;
}
.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.service-link:hover::before {
    left: 100%;
}
.service-link:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 8px 25px rgba(0, 255, 255, 0.4),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(0, 255, 255, 0.05));
}
.service-link:active {
    transform: translateY(0) scale(0.98);
}
.service-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.service-link:hover svg {
    transform: translateX(3px);
}
/* Efecto de brillo */
.service-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    border-radius: 50%;
}
.service-link:hover::after {
    width: 100%;
    height: 100%;
}

/* Para los diferentes servicios, aplica estos mismos patrones */

@media (max-width: 768px) {
    .service-features {
        gap: 6px;
    }
    
    .feature-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
}

/* MODAL REUTILIZABLE */

.tech-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;

    /* Fondo futurista */
    background:
        radial-gradient(
            ellipse at top,
            rgba(0, 180, 255, 0.15),
            rgba(30, 30, 34, 0.85) 60%
        );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    z-index: 10000;
    animation: techModalFadeIn 0.3s ease;
    padding: 50px;
    overflow: hidden;
}


.tech-modal-overlay.tech-modal-active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes techModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes techModalSlideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Container */
.tech-modal {
    background: linear-gradient(145deg, #1a1f3a, #0f1229);
    padding: 0;
    border-radius: 16px;
    max-width: 650px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(0, 212, 255, 0.15);
    animation: techModalSlideUp 0.4s ease;
    margin: auto;
}

.tech-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff);
    background-size: 200% 100%;
    animation: techModalShimmer 3s linear infinite;
    border-radius: 16px 16px 0 0;
}

@keyframes techModalShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Modal Header */
.tech-modal-header {
    padding: 35px 60px 25px 35px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.tech-modal-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

/* Close Button */
.tech-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.tech-modal-close:hover {
    background: rgba(255, 50, 50, 0.25);
    border-color: rgba(255, 100, 100, 0.4);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.tech-modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Modal Body */
.tech-modal-body {
    padding: 35px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 15px;
}

.tech-modal-body p {
    margin: 0 0 18px 0;
}

.tech-modal-body p:last-child {
    margin-bottom: 0;
}

.tech-modal-body h4 {
    margin: 25px 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #00d4ff;
}

.tech-modal-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.tech-modal-body li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.tech-modal-body li::marker {
    color: #00d4ff;
}

/* Modal Footer */
.tech-modal-footer {
    padding: 25px 35px 35px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    border-top: 1px solid rgba(0, 212, 255, 0.08);
}

/* Botón Cerrar */
.tech-modal-btn-cancel {
    padding: 13px 28px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-modal-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tech-modal-btn-cancel:active {
    transform: translateY(0);
}

/* Botón Acción Principal */
.tech-modal-btn-action {
    padding: 13px 28px;
    cursor: pointer;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #0a0a0f;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-modal-btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #00e5ff, #00b8e6);
}

.tech-modal-btn-action:active {
    transform: translateY(-1px);
}

/* Scrollbar personalizado para el modal */
.tech-modal::-webkit-scrollbar {
    width: 10px;
}

.tech-modal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 16px 16px 0;
}

.tech-modal::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.4);
    border-radius: 5px;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.tech-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.6);
}

/* Responsive - Tablets */
@media (max-width: 992px) {
    .tech-modal {
        max-width: 90%;
        max-height: 75vh;
    }
    
    .tech-modal-header h2 {
        font-size: 28px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .tech-modal-overlay {
        padding: 50px;
        align-items: flex-start;
        padding-top: 80px; /* Espacio para el navbar en móvil */
    }
    
    .tech-modal {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 100px);
        margin: 0;
    }
    
    .tech-modal-header {
        padding: 25px 50px 20px 25px;
    }
    
    .tech-modal-header h2 {
        font-size: 24px;
    }
    
    .tech-modal-close {
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .tech-modal-body {
        padding: 25px;
        font-size: 14px;
    }
    
    .tech-modal-body h4 {
        font-size: 17px;
        margin: 20px 0 12px 0;
    }
    
    .tech-modal-footer {
        padding: 20px 25px 25px;
        flex-direction: column;
        gap: 12px;
    }
    
    .tech-modal-btn-cancel,
    .tech-modal-btn-action {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Responsive - Mobile pequeño */
@media (max-width: 480px) {
    .tech-modal-overlay {
        padding: 50px;
        padding-top: 70px;
    }
    
    .tech-modal {
        border-radius: 12px;
        max-height: calc(100vh - 85px);
    }
    
    .tech-modal-header {
        padding: 20px 45px 18px 20px;
    }
    
    .tech-modal-header h2 {
        font-size: 22px;
    }
    
    .tech-modal-close {
        width: 32px;
        height: 32px;
        top: 18px;
        right: 18px;
        font-size: 18px;
    }
    
    .tech-modal-body {
        padding: 20px;
        font-size: 14px;
    }
    
    .tech-modal-body ul {
        padding-left: 20px;
    }
    
    .tech-modal-footer {
        padding: 18px 20px 20px;
    }
}


/* Contact Section */
.contact {
    background: var(--dark-1);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(20, 20, 35, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(0, 255, 255, 0.2);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--cyan);
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray);
    transition: all 0.3s ease;
}

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

.social-link:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.contact-form {
    background: rgba(20, 20, 35, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.form-group input:focus ~ .input-border,
.form-group textarea:focus ~ .input-border {
    width: 100%;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 18px 30px;
}

/* Footer */
.footer {
    position: relative;
    background: var(--dark-2);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footImage {
    width: 100px;
}

.footer-text {
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 255, 255, 0.1), transparent);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .hologram {
        width: 280px;
        height: 280px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0;
        background: rgba(10, 10, 15, 0.98);
        padding: 30px 0;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s ease;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 15px 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-line {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .stat-divider {
        display: none;
    }

    .hero-stats {
        gap: 20px;
    }
}
