/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 120px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* NUEVO: Ajuste Responsivo para Móvil */
@media (max-width: 768px) {
    .hero-section {
        /* Reducimos drásticamente el padding superior */
        /* Antes: 120px -> Ahora: 80px (suficiente para librar el navbar) */
        padding-top: 90px;
        padding-bottom: 60px;
        min-height: auto;
        /* Quitamos altura forzada en móvil para evitar scroll blanco */
    }

    .hero-title {
        font-size: 2.5rem;
        /* Título un poco más pequeño para que quepa mejor */
    }
}

.hero-title {
    line-height: 1.1;
    letter-spacing: -1.5px;
}

/* ... RESTO DE TU CSS IGUAL QUE ANTES ... */
.text-gradient {
    background: linear-gradient(to right, #ffffff 0%, var(--color-cyan) 100%);
    background-clip: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-cyan);
}

.animate-gradient {
    background-size: 200% auto;
    animation: gradientShine 5s linear infinite;
}

@keyframes gradientShine {
    to {
        background-position: 200% center;
    }
}

.btn-outline-silver {
    border: 2px solid rgba(226, 232, 240, 0.5);
    color: #e2e8f0;
    background: transparent;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-silver:hover {
    background: rgba(226, 232, 240, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(226, 232, 240, 0.25);
}

.ls-1 {
    letter-spacing: 1px;
}

.blur-max {
    filter: blur(150px);
}

.float-animation-slow {
    animation: float 8s ease-in-out infinite;
}

.float-animation-medium {
    animation: float 6s ease-in-out infinite;
}

.float-animation-fast {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-tech-card {
    min-height: 200px;
    border-top: 1px solid rgba(0, 168, 204, 0.3);
}

/* Ajustes específicos para las tarjetas del Hero */
.hero-tech-card {
    min-height: 200px;
    border-top: 1px solid rgba(0, 168, 204, 0.3);
    /* Un toque extra de cyan arriba */
}

/* ... (Tus estilos anteriores del Hero) ... */

/* ========================================= */
/* SECCIÓN COMPARATIVA (Problema vs Solución) */
/* ========================================= */
.comparison-card {
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-cyan);
}

/* Efecto sutil de luz cian en la parte inferior de la tarjeta */
.bg-cyan-glow {
    background: linear-gradient(to bottom, rgba(0, 168, 204, 0.05), rgba(0, 168, 204, 0.15));
}

.text-decoration-line-through {
    text-decoration-thickness: 2px;
    opacity: 0.6;
}

/* ========================================= */
/* MARQUEE INFINITO (Tech Stack)             */
/* ========================================= */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: inline-flex;
    animation: scroll 30s linear infinite;
}

/* Pausar al pasar el mouse para ver detalles */
.marquee-content:hover {
    animation-play-state: paused;
}

.tech-item {
    display: flex;
    align-items: center;
    margin: 0 2rem;
    color: var(--color-silver-dark);
    /* Color apagado inicial */
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-item i {
    font-size: 2rem;
    /* Tamaño del icono */
    margin-right: 0.8rem;
    filter: grayscale(100%);
    /* Blanco y negro por defecto */
    transition: all 0.3s ease;
}

/* Efecto Hover Individual */
.tech-item:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.tech-item:hover i {
    filter: grayscale(0%);
    /* Color original al hover */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Se mueve la mitad (el bloque duplicado) */
}