@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&display=swap');

.statement-left-block {
  position: absolute;
  left: 5%;
  top: 20%;
  transform: translateY(-50%);
  z-index: 10;
  text-align: left;
}

.statement-left-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-family: "Gill Sans Extrabold", sans-serif;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .statement-left-block {
    position: static;
    transform: none;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.statement-title-left {
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 10;
    text-align: left;
}
/* Reset general de márgenes, padding y modelo de caja */
* {
    cursor: default;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo general del cuerpo del documento, fuente principal y control de scroll horizontal */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, #1a1a2e 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, #0f1419 0%, transparent 50%);
    animation: bgShift 15s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* Navigation */
.dashboard-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.dashboard-nav p{
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: auto;
    padding-left: 1rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover:before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.6)); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    color: #e5e7eb;
    line-height: 1.4;
}

.hero-subtitle strong {
    color: #3b82f6;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.5);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.6);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.cta-button:hover:before {
    left: 100%;
}

/* Sections */
.services-section,
.benefits-section,
.cta-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e5e7eb;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service List */
.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-list li,
.benefits-list li {
    background: rgba(59, 130, 246, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: #ffffff;
}

.service-list li:hover,
.benefits-list li:hover {
    transform: translateY(-10px);
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 30px;
    margin: 3rem auto;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-text {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating elements animation */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: float 20s infinite linear;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(59, 130, 246, 0.7);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-nav {
        gap: 1rem;
        padding: 1rem;
        flex-wrap: wrap;
    }

    .hero-section {
        padding: 8rem 1rem 2rem;
    }

    .service-list,
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .services-section,
    .benefits-section,
    .cta-section {
        padding: 3rem 1rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dashboard-nav {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Additional blue accent elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

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

#scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #3b82f6;
  z-index: 9999;
  transition: width 0.2s ease;
}
/*Preloader inicio*/


       /* Preloader Container */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.8s ease-out;
        }

        /* Highway Background */
        .highway {
            position: absolute;
            width: 100%;
            height: 100%;
            perspective: 800px;
            overflow: hidden;
        }

        /* Single Chasing Line */
        .chase-line {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) rotateX(85deg);
            width: 6px;
            height: 0;
            background: linear-gradient(to top, 
                #00d4ff 0%, 
                #76ff03 50%, 
                #00d4ff 100%);
            box-shadow: 
                0 0 20px #00d4ff,
                0 0 40px #76ff03,
                0 0 60px #00d4ff;
            animation: chaseLine 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @keyframes chaseLine {
            0% { 
                height: 0; 
                opacity: 0;
            }
            20% { 
                height: 200px; 
                opacity: 1;
            }
            100% { 
                height: 1200px; 
                opacity: 1;
                transform: translateX(-50%) rotateX(85deg) translateY(-200px);
            }
        }

        /* Multiple Energy Lines */
        .energy-lines {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .energy-line {
            position: absolute;
            width: 2px;
            height: 100%;
            animation: energyPulse 1s linear infinite;
        }

        .energy-line:nth-child(1) {
            left: 15%;
            background: linear-gradient(to bottom, transparent, #ff0080, transparent);
            animation-delay: 0s;
        }

        .energy-line:nth-child(2) {
            right: 15%;
            background: linear-gradient(to bottom, transparent, #00ffff, transparent);
            animation-delay: -0.3s;
        }

        .energy-line:nth-child(3) {
            left: 30%;
            background: linear-gradient(to bottom, transparent, #8b5cf6, transparent);
            animation-delay: -0.6s;
        }

        .energy-line:nth-child(4) {
            right: 30%;
            background: linear-gradient(to bottom, transparent, #00d4ff, transparent);
            animation-delay: -0.9s;
        }

        @keyframes energyPulse {
            0%, 100% { 
                opacity: 0.3; 
                transform: scaleY(0.5);
                box-shadow: 0 0 10px;
            }
            50% { 
                opacity: 1; 
                transform: scaleY(1.2);
                box-shadow: 0 0 30px;
            }
        }

        /* Futuristic Car - More Dynamic */
        .car {
            position: absolute;
            bottom: 40%;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 40px;
            background: linear-gradient(45deg, #001d3d, #ffffff, #8b5cf6);
            border-radius: 20px 20px 8px 8px;
            box-shadow: 
                0 0 30px #001d3d,
                0 0 60px #ffffff,
                inset 0 -10px 20px rgba(0,0,0,0.3);
            animation: carRace 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 100;
        }

        /* Car Details */
        .car::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 20%;
            width: 60%;
            height: 20px;
            background: linear-gradient(45deg, #00ffff, rgba(255,255,255,0.8), #ff0080);
            border-radius: 15px;
            box-shadow: 0 0 25px #00ffff;
        }

        .car::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 5%;
            width: 90%;
            height: 6px;
            background: linear-gradient(90deg, #ff0080, #00ffff, #ff0080);
            border-radius: 3px;
            box-shadow: 0 0 30px #00ffff;
        }

        /* Car Racing Animation */
        @keyframes carRace {
            0% { 
                transform: translateX(-50%) scale(0.2) rotateZ(-5deg);
                bottom: -20%;
                filter: blur(2px);
            }
            30% { 
                transform: translateX(-50%) scale(0.6) rotateZ(2deg);
                bottom: 25%;
                filter: blur(1px);
            }
            70% { 
                transform: translateX(-50%) scale(1) rotateZ(-1deg);
                bottom: 35%;
                filter: blur(0px);
            }
            100% { 
                transform: translateX(-50%) scale(1.2) rotateZ(0deg);
                bottom: 40%;
                filter: blur(0px);
            }
        }

        /* Speed Lines */
        .speed-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .speed-line {
            position: absolute;
            width: 200px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
            animation: speedMove 0.3s linear infinite;
        }

        @keyframes speedMove {
            0% { 
                transform: translateX(-250px) translateY(0);
                opacity: 0;
            }
            50% { 
                opacity: 1;
            }
            100% { 
                transform: translateX(100vw) translateY(20px);
                opacity: 0;
            }
        }

        /* Digital Rain Effect */
        .digital-rain {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.6;
        }

        .rain-drop {
            position: absolute;
            color: #76ff03;
            font-size: 14px;
            animation: rainFall 2s linear infinite;
        }

        @keyframes rainFall {
            0% { 
                transform: translateY(-100px);
                opacity: 0;
            }
            10% { 
                opacity: 1;
            }
            90% { 
                opacity: 1;
            }
            100% { 
                transform: translateY(100vh);
                opacity: 0;
            }
        }

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

        /* MEGA EXPLOSION - Much More Impactful */
        .mega-explosion {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            opacity: 0;
            animation: megaExplode 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-delay: 2.3s;
            animation-fill-mode: forwards;
            z-index: 1000;
        }

        @keyframes megaExplode {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0);
                background: radial-gradient(circle, #ff0080, #8b5cf6);
                box-shadow: none;
            }
            15% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(3);
                background: radial-gradient(circle, #ffffff, #ff0080, #00ffff);
                box-shadow: 
                    0 0 100px #ff0080,
                    0 0 200px #00ffff,
                    0 0 300px #8b5cf6;
            }
            30% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(8);
                background: radial-gradient(circle, #ffffff, #00d4ff, #ff0080, #8b5cf6);
                box-shadow: 
                    0 0 200px #ff0080,
                    0 0 400px #00ffff,
                    0 0 600px #8b5cf6,
                    0 0 800px #00d4ff;
            }
            60% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(15);
                background: radial-gradient(circle, 
                    rgba(255,255,255,0.9), 
                    rgba(255,0,128,0.8), 
                    rgba(0,255,255,0.6), 
                    rgba(139,92,246,0.4),
                    transparent);
                box-shadow: 
                    0 0 300px #ff0080,
                    0 0 600px #00ffff,
                    0 0 900px #8b5cf6,
                    inset 0 0 100px rgba(255,255,255,0.3);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(25);
                background: radial-gradient(circle, 
                    transparent, 
                    rgba(255,0,128,0.2), 
                    transparent);
            }
        }

        /* Explosion Shockwave */
        .shockwave {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            border: 3px solid #76ff03;
            border-radius: 50%;
            opacity: 0;
            animation: shockwaveExpand 1s ease-out;
            animation-delay: 2.4s;
        }

        @keyframes shockwaveExpand {
            0% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(0);
                border-color: #ffffff;
                border-width: 5px;
            }
            50% {
                opacity: 0.8;
                border-color: #76ff03;
                border-width: 3px;
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(50);
                border-color: transparent;
                border-width: 1px;
            }
        }

        /* Flash Effect */
        .flash-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, 
                rgba(255,255,255,0.9) 0%, 
                rgba(0, 212, 255, 0.6) 30%, 
                rgba(0, 8, 20, 0.4) 60%, 
                transparent 100%);
            opacity: 0;
            animation: flashEffect 0.8s ease-out;
            animation-delay: 2.5s;
            z-index: 999;
        }

        @keyframes flashEffect {
            0% { opacity: 0; }
            20% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* Screen Shake */
        .screen-shake {
            animation: screenShake 0.6s ease-in-out;
            animation-delay: 2.4s;
        }

        @keyframes screenShake {
            0%, 100% { transform: translateX(0); }
            10% { transform: translateX(-10px) translateY(5px); }
            20% { transform: translateX(10px) translateY(-5px); }
            30% { transform: translateX(-8px) translateY(8px); }
            40% { transform: translateX(8px) translateY(-8px); }
            50% { transform: translateX(-6px) translateY(6px); }
            60% { transform: translateX(6px) translateY(-6px); }
            70% { transform: translateX(-4px) translateY(4px); }
            80% { transform: translateX(4px) translateY(-4px); }
            90% { transform: translateX(-2px) translateY(2px); }
        }



        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Hide preloader and show content */
        .preloader.hidden {
            opacity: 0;
            transform: scale(1.2);
            pointer-events: none;
        }

        .main-content.visible {
            opacity: 1;
        }

/* Preloader Section*/



#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeOut 1s ease-out forwards;
  animation-delay: 2s;
}

.loader-logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3b82f6;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.logo-img {
  height: 100px;
  margin-right: 1rem;
}

.logo-preloader {
  width: 400px;
  animation: pulseLogo 2s infinite ease-in-out;
}

/* Portfolio Section */
.portfolio-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 2rem;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.project-card p {
  font-size: 1rem;
  color: #d1d5db;
}

.portfolio-carousel {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.project-slide {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  background: #0d1117;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0.4;
  transform: scale(0.95);
}

.project-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #3b82f6;
}

.slide-desc {
  font-size: 1.2rem;
  color: #e5e7eb;
  max-width: 600px;
  text-align: center;
}
  /* About Hero Section */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
  animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1) rotate(0deg); 
  }
  50% { 
    opacity: 0.8; 
    transform: scale(1.1) rotate(180deg); 
  }
}

.about-hero-container {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 900px;
  padding: 2rem;
}

.about-hero-title {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#loopoff-word {
  background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titlePulse 4s ease-in-out infinite;
  display: block;
}

@keyframes titlePulse {
  0%, 100% { 
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 0 50px rgba(59, 130, 246, 0.6));
    transform: scale(1.05);
  }
}

#scroll-phrase {
  color: #e5e7eb;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  display: block;
  min-height: 1.2em;
}

#scroll-phrase.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* About Section */
.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  background: radial-gradient(ellipse at center, #0d1117 0%, #000000 100%);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.about-container {
  max-width: 1200px;
  text-align: center;
  animation: fadeInUp 1s ease-out forwards;
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.about-desc {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #e5e7eb;
  margin-bottom: 4rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.about-box {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  border-radius: 25px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* 3D tilt floating effect */
  transform: perspective(1000px) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.about-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.8s;
}

.about-box:hover::before {
  left: 100%;
}

.about-box:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-20px) scale(1.03);
  box-shadow: 0 35px 60px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.05);
}

.about-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #3b82f6;
  font-weight: 700;
}

.about-box p {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
}

.about-vision {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  color: #9ca3af;
  margin-top: 3rem;
  font-style: italic;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.about-vision::before,
.about-vision::after {
  content: '"';
  font-size: 3rem;
  color: #3b82f6;
  opacity: 0.3;
  position: absolute;
  font-family: serif;
}

.about-vision::before {
  top: -1rem;
  left: -2rem;
}

.about-vision::after {
  bottom: -2rem;
  right: -2rem;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #293b58 0%, #334155 50%, #475569 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
  animation: ctaBackground 15s ease-in-out infinite;
}

@keyframes ctaBackground {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
}

.final-cta-container {
  max-width: 900px;
  animation: fadeInUp 1s ease-out forwards;
  position: relative;
  z-index: 2;
}

.final-cta-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  animation: subtitleFade 2s ease-out 0.5s both;
}

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

.final-cta-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 3rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  animation: titleSlideIn 2s ease-out 0.8s both;
}

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

.final-cta-title u {
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.final-cta-button {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  color: #1d4ed8;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: buttonFadeIn 2s ease-out 1.2s both;
}

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

.final-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  transition: left 0.6s;
}

.final-cta-button:hover::before {
  left: 100%;
}

.final-cta-button:hover {
  background: #ffffff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px) scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero-title {
    gap: 0.5rem;
  }
  
  .about-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }
  
  .about-box {
    padding: 2rem 1.5rem;
  }
  
  .about-section,
  .final-cta-section {
    padding: 4rem 1rem;
  }
  
  .about-vision::before,
  .about-vision::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 2rem 1rem;
  }
  
  .about-hero-container {
    padding: 1rem;
  }
  
  .final-cta-button {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }
}

/* Contact Page Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, #1a1a2e 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, #0f1419 0%, transparent 50%);
    animation: bgShift 15s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* Navigation */
.dashboard-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover:before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Contact Hero Section */
.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1) rotate(180deg); 
    }
}

.contact-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-info {
    animation: fadeInLeft 1s ease-out;
}

.contact-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(59, 130, 246, 0.6));
        transform: scale(1.02);
    }
}

.contact-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #e5e7eb;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.4);
}

.contact-icon {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Contact Form */
.contact-form-container {
    animation: fadeInRight 1s ease-out;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transform: scale(1.02);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(229, 231, 235, 0.5);
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.submit-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.6);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.submit-button:hover:before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(-1px);
}

/* Success Message */
.success-message {
    display: none;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    color: #10b981;
    text-align: center;
    margin-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

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

/* Footer */
.site-footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: 5rem;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating particles animation */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    animation: float 25s infinite linear;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Additional hover effects */
.contact-form:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Remove grid-template-columns override for .contact-container */
    .contact-container {
        /* grid-template-columns: 1fr; */ /* Removed */
        gap: 3rem;
        text-align: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .dashboard-nav {
        gap: 1rem;
        padding: 1rem;
        flex-wrap: wrap;
    }

    .contact-hero {
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      padding: 4rem 1rem;
    }

    .contact-container {
      max-width: 800px;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 3rem 2rem;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);

      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
}

/* Sección principal del statement LoopOff: fondo animado y alineación del texto */
.loopoff-statement {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
  overflow: hidden;
  position: relative;
  text-align: center;
}

/* Efecto de fondo animado sutil usando gradientes radiales */
.loopoff-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
      radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  animation: backgroundPulse 8s ease-in-out infinite;
  z-index: 1;
}

/* Línea diagonal animada para efecto visual dinámico */
.flowing-line {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.2) 49%, rgba(59, 130, 246, 0.2) 51%, transparent 52%);
  animation: flowLine 12s linear infinite;
  z-index: 2;
}

/* Contenedor del texto principal con efecto de flotación */
.statement-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 10;
  animation: containerFloat 6s ease-in-out infinite;
  padding: 0 1.5rem;
}

/* Cada línea del texto animado principal (colores, animaciones y gradientes) */
.statement-line {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #9333ea 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: fadeUpScale 2s ease forwards;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

/* Efecto de brillo que cruza el texto para hacerlo más visual */
.statement-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.statement-line:nth-child(1) { animation-delay: 0.3s; }
.statement-line:nth-child(1)::before { animation-delay: 0.8s; }

.statement-line:nth-child(2) { animation-delay: 1.5s; }
.statement-line:nth-child(2)::before { animation-delay: 2s; }

.statement-line:nth-child(3) { animation-delay: 3s; }
.statement-line:nth-child(3)::before { animation-delay: 3.5s; }

.statement-line:nth-child(4) { animation-delay: 4.5s; }
.statement-line:nth-child(4)::before { animation-delay: 5s; }

.statement-line:hover {
  transform: translateY(-5px) scale(1.02);
  text-shadow: 0 0 60px rgba(59, 130, 246, 0.5), 0 0 100px rgba(147, 51, 234, 0.3);
  transition: all 0.3s ease;
}

/* Partículas animadas que suben en el fondo como decoración */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(59, 130, 246, 0.8);
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
}

/* Animación de pulso del fondo */
@keyframes backgroundPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* Animación de movimiento de la línea diagonal */
@keyframes flowLine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Animación de flotación del contenedor */
@keyframes containerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Animación de aparición y escalado de las frases */
@keyframes fadeUpScale {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Animación del brillo del texto */
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Animación de flotación de partículas */
@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* Para el mouse*/


.cursor-particle {
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(100, 150, 255, 0.8), rgba(100, 150, 255, 0));
            animation: particleFade 1.2s ease-out forwards;
        }

        .cursor-particle.white {
            background: radial-gradient(circle, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
        }

        .cursor-particle.blue {
            background: radial-gradient(circle, rgba(64, 128, 255, 0.7), rgba(64, 128, 255, 0));
        }

        .cursor-particle.light-blue {
            background: radial-gradient(circle, rgba(150, 200, 255, 0.5), rgba(150, 200, 255, 0));
        }

        @keyframes particleFade {
            0% {
                opacity: 1;
                transform: scale(1);
            }
            100% {
                opacity: 0;
                transform: scale(0.3);
            }
        }

        /* Partículas de movimiento rápido */
        .fast-particle {
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            width: 1px;
            height: 8px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
            animation: fastFade 0.6s ease-out forwards;
        }

        @keyframes fastFade {
            0% {
                opacity: 1;
                transform: scale(1);
            }
            100% {
                opacity: 0;
                transform: scale(0) translateY(20px);
            }
        }

        /* Efecto de resplandor sutil */
        .glow-particle {
            position: fixed;
            pointer-events: none;
            z-index: 9997;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(100, 150, 255, 0.1), transparent);
            border-radius: 50%;
            animation: glowFade 2s ease-out forwards;
        }

        @keyframes glowFade {
            0% {
                opacity: 1;
                transform: scale(0.5);
            }
            100% {
                opacity: 0;
                transform: scale(2);
            }
        }
        
        /* Título de sección */
.how-works {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #3b82f6;
}

/* Contenedor de todas las tarjetas */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 0 2rem;
}

/* Cada tarjeta individual */
.step {
  background: #1e293b;
  color: #f8fafc;
  border-radius: 1rem;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  margin: 2em;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Título de cada tarjeta */
.step-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #38bdf8;
}

/* Descripción de cada tarjeta */
.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.portfolio-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #3b82f6;
  margin-top: 2rem;
}

.portfolio-desc{
  text-align: center;
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-items{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}
.portfolio-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.portfolio-item h3 {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #3b82f6;
}
.portfolio-item p {
  font-size: 1rem;
  color: #cbd5e1;
  margin-top: 0.5rem;
}

.portfolio-item:nth-child(3) img{
  width: 100%;
  height: 27vh;

}

/*Media*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&family=Playfair+Display:wght@200;500&display=swap');

/* Base styles (mobile-first) */



.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5em;
  margin-top: 4em;
}

.phone {
  position: static;
  width: 200px;
  margin: 1.5em auto 0;
}

.left, .right {
  width: 100%;
  position: relative;
}

.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
}

.right ul {
  list-style: none;
  padding: 0;
  width: 100%;
  margin: 0 auto 2em;
}

li {
  display: flex;
  align-items: center;
  gap: .75em;
  margin-bottom: 1.5em;
}

li img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

h1 {
  width: 70%;
  margin: 0 auto 1.5em;
}

.cta {
  display: inline-block;
  text-decoration: none;
  background: #1DB473;
  color: #fff;
  font-weight: bold;
  padding: 1em;
  border-radius: .3em;
  transition: transform .2s ease, background .3s ease;
}

/* Ocultar preloaders en móvil */
.preloader {
  display: none;
}

/* Tablet: desde 600px */
@media (min-width: 600px) {
  .wrapper {
    padding: 1.5em;
  }
  .phone {
    width: 220px;
    margin-top: 2em;
  }
  .right ul {
    width: 80%;
  }
  h1 {
    font-size: 2em;
  }
  /* si quieres un preloader suave en tablet */
  .preloader {
    display: block;
    /* aquí tu animación CSS */
  }
}

/* Desktop pequeño: desde 900px */
@media (min-width: 900px) {
  .wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .phone {
    width: 250px;
    margin: 0;
  }
  .left, .right {
    width: 48%;
  }
  .left {
    text-align: left;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .right {
    margin-top: 0;
  }
}

/* Desktop grande: desde 1200px */
@media (min-width: 1200px) {
  body {
    background-size: 100%;
  }
  h1 {
    font-size: 3em;
  }
  .right ul {
    width: 70%;
  }
  .cta:hover {
    transform: translateY(-8px);
    background: linear-gradient(45deg, #1DB473, #0e8852);
  }
}


.center-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
}
.about-columns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-box {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 1.5rem;
  width: 300px;
  text-align: center;
  flex: 1 1 300px;
  padding: 1rem;
  border-radius: 0.5rem;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
  /* Base container improvements */
  .about-container {
    width: 100%;
    display: block;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
  
  .about-columns {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .about-box {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    font-size: 0.9rem; /* Slightly larger for better readability */
    padding: 1rem 1.25rem;
    line-height: 1.5; /* Better text spacing */
  }
  
  .about-title,
  .about-desc {
    text-align: center;
  }
  
  .about-section {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
  }
  
  /* Content ordering */
  .about-container:first-of-type {
    order: 2;
  }
  
  .about-container:last-of-type {
    order: 1;
  }
  
  /* Typography improvements */
  h1 {
    font-size: 1.75rem; /* Slightly larger */
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  
  .statement-line {
    font-size: 1.4rem;
    margin: 1rem 0.5rem;
    line-height: 1.4;
  }
  
  .hero-title h1{
    font-size: 2.6em;
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .how-works {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  /* Services and benefits */
  .services-section {
    padding: 1.5rem 1rem;
    margin: 0 auto;
  }
  
  .benefits-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .service-list li,
  .benefits-list li {
    background: rgba(59, 130, 246, 0.1);
    padding: 1.25rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 1rem;
    margin-right: 2em;
  }
  
  /* Enhanced CTA button for mobile */
  .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin: 1rem auto;
    box-sizing: border-box;
    /* Touch-friendly sizing */
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cta-button:hover,
  .cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  }

  
  
  /* Additional mobile optimizations */
  
  /* Ensure all interactive elements are touch-friendly */
  button,
  .cta-button,
  a[role="button"] {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Better spacing for lists */
  ul, ol {
    padding-left: 1.5rem;
  }
  
  /* Prevent horizontal scroll */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Images responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Form elements if you have any */
  input, textarea, select {
    width: 100%;
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem;
    border-radius: 8px;
  }
}

/* Small mobile devices (phones in portrait) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-box {
    font-size: 0.85rem;
    padding: 0.875rem 1rem;
  }
  
  .cta-button {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.2rem;
  }

}