/* css/styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Texto del logo (desktp y todos) */

header .site-title,
header .logo-text,
header .navbar-brand {
 /* tus estilos aquí (o déjalo vacío, pero cerrado) */
}

/* AJUSTES PARA DIFERENTES RELACIONES DE ASPECTO */

/* SOLO PARA CELULARES */
@media (max-width: 768px) {
  .icono-cerebro {
    font-size: 15px; /* más pequeño en móvil */
  }
}
  .texto-elyon {
    font-size: 10px;
    color: #ffffff;
  }


@media (orientation: portrait) {
    .responsive-video {
        width: 100%;
        height: auto;
    }
}

@media (orientation: landscape) {
    .responsive-video {
        width: auto;
        height: 100%;
    }
}

:root {
    --dark-blue: #0a1128;
    --deep-blue: #1a237e;
    --electric-blue: #2962ff;
    --neon-blue: #00e5ff;
    --cyber-blue: #18ffff;
    --purple-blue: #7c4dff;
    --light-blue: #bbdefb;
    --white: #ffffff;
    --gray-light: #e3f2fd;
    --gradient-dark: linear-gradient(135deg, var(--dark-blue) 0%, var(--deep-blue) 100%);
    --gradient-neon: linear-gradient(90deg, var(--electric-blue) 0%, var(--neon-blue) 50%, var(--purple-blue) 100%);
    --gradient-cyber: linear-gradient(45deg, var(--neon-blue) 0%, var(--cyber-blue) 100%);
    --shadow-blue: 0 10px 30px rgba(41, 98, 255, 0.15);
    --shadow-neon: 0 0 20px rgba(0, 229, 255, 0.3);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    zoom: 0.9; /* 90% del tamaño normal */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background-color: var(--dark-blue);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    zoom: 0.9; /* 90% del tamaño normal */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(41, 98, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 77, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
    z-index: -2;
    animation: gradientShift 15s ease infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Floating particles animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(0, 229, 255, 0.2);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Grid animation */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.8rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 229, 255, 0.2);
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-blue);
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.hero {
position: relative;
margin-top: 90px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
    position: relative;
    margin-top: 20px;
}

.text-gradient {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    z-index: -1;
    transition: var(--transition);
}

.btn-primary {
    background: transparent;
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon), 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.btn i {
    margin-left: 10px;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(5px);
}

.card {
    background: rgba(26, 35, 126, 0.3);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 229, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-neon);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-neon), var(--shadow-lg);
    border-color: rgba(0, 229, 255, 0.3);
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-primary {
    background: rgba(0, 229, 255, 0.15);
    color: var(--neon-blue);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.tag-secondary {
    background: rgba(124, 77, 255, 0.15);
    color: var(--purple-blue);
    border: 1px solid rgba(124, 77, 255, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    background: rgba(10, 17, 40, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    position: relative;
}

.logo span {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.logo i {
    margin-right: 12px;
    color: var(--neon-blue);
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 229, 255, 1);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: var(--light-blue);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--neon-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--neon-blue);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 150px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 50px;
    
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neon), var(--shadow-lg);
    transform: rotateY(-5deg) rotateX(5deg);
    animation: floatImage 6s ease-in-out infinite;
    border: 2px solid rgba(0, 229, 255, 0.3);
}

@keyframes floatImage {
    0%, 100% {
        transform: rotateY(-5deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: rotateY(-5deg) rotateX(5deg) translateY(-20px);
    }
}

.floating-element {
    position: absolute;
    background: rgba(26, 35, 126, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-blue);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    z-index: 10;
}

.floating-1 {
    top: 10%;
    left: -30px;
    animation: floatElement 8s ease-in-out infinite;
}

.floating-2 {
    bottom: 20%;
    right: -30px;
    animation: floatElement 10s ease-in-out infinite 1s;
}

.floating-3 {
    bottom: 10%;
    left: 10%;
    animation: floatElement 9s ease-in-out infinite 0.5s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    75% {
        transform: translateY(10px) rotate(-2deg);
    }
}

.floating-element .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.floating-1 .icon {
    background: var(--gradient-neon);
    color: white;
}

.floating-2 .icon {
    background: var(--gradient-cyber);
    color: white;
}

.floating-3 .icon {
    background: var(--purple-blue);
    color: white;
}

/* Typing Animation */
.typing-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    min-height: 70px;
}

.typing-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    min-height: 2.8rem;
}

.typing-cursor {
    display: inline-block;
    width: 4px;
    height: 3rem;
    background-color: var(--neon-blue);
    margin-left: 5px;
    animation: blink 1s infinite;
    box-shadow: 0 0 10px var(--neon-blue);
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: rgba(10, 17, 40, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.partners h3 {
    text-align: center;
    margin-bottom: 50px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.partner-logo {
    height: 45px;
    opacity: 0.7;
    transition: var(--transition);
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(0, 229, 255, 0.5));
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--neon-blue));
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.feature-icon-1 {
    background: var(--gradient-neon);
    color: white;
}

.feature-icon-2 {
    background: var(--gradient-cyber);
    color: white;
}

.feature-icon-3 {
    background: linear-gradient(135deg, var(--purple-blue) 0%, var(--electric-blue) 100%);
    color: white;
}

/* Comparison Section */
.comparison {
    background: rgba(26, 35, 126, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.comparison-card {
    background: rgba(26, 35, 126, 0.4);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow-blue);
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.comparison-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.comparison-list i {
    margin-right: 15px;
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
}

.comparison-list .fa-check {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.comparison-list .fa-times {
    color: #ff5252;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.stat-card {
    text-align: center;
    padding: 40px;
    background: rgba(26, 35, 126, 0.3);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
    border-color: rgba(0, 229, 255, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

/* CTA Section */
.cta {
    background: rgba(26, 35, 126, 0.4);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.cta h2 {
    color: white;
    margin-bottom: 25px;
}

.cta p {
    color: var(--light-blue);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.cta .btn {
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 22px 45px;
}

/* Footer */
.footer {
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(15px);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-logo span {
    color: var(--neon-blue);
}

.footer-links h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--light-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    color: var(--neon-blue);
    transition: var(--transition);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.social-links a:hover {
    background: var(--gradient-neon);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    color: var(--light-blue);
    font-size: 0.95rem;
}

.logo {
  height:50px;   /* tamaño del logo */
}

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    .hero .container {
        gap: 50px;
    }
    
    .features-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid, .comparison-grid, .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-1, .floating-3 {
        display: none;
    }
    
    .floating-2 {
        position: relative;
        right: 0;
        bottom: 0;
        margin: 30px auto 0;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .features-grid, .comparison-grid, .stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .typing-text {
        font-size: 1.8rem;
    }
    
    .hero {
        padding-top: 150px;
        padding-bottom: 100px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .card {
        padding: 30px;
    }
    
    .comparison-card {
        padding: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}


.planes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.plan {
    flex: 1;
    min-width: 300px;
    background: #f5f5f5;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.plan h3 {
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.plan ul {
    list-style: none;
    padding-left: 0;
}

.plan li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.boton-contacto {
    display: inline-block;
    background: #0073aa;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Menu móvil */
@media (max-width: 768px) {

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(10, 17, 40, 0.95);
        backdrop-filter: blur(15px);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 30px;
        gap: 25px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }
}

.mobile-menu-btn {
    display: none;
}

/* Navbar efecto scroll */
.navbar.scrolled {
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.hero video {
 position:absolute;
 z-index:-1;
}

/* =========================
   AJUSTE HERO EN MOVIL
========================= */

/* =========================
   AJUSTE HERO EN MOVIL
========================= */

@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: unset;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        height: 10px;
    }

    .hero-image {
        width: 100%;
        display: block;
        margin-top: 20px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        display: block;
    }

}
