/* ===== HERO SEÑAL – MOBILE FIRST ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "capitana", sans-serif;
    background: #113960;

}

/* ===== HERO MODERNO 2026 ===== */

.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background:
            radial-gradient(circle at 15% 25%, rgba(0,195,255,0.18), transparent 40%),
            radial-gradient(circle at 85% 75%, rgba(0,102,255,0.15), transparent 40%),
            linear-gradient(180deg, #050b18 0%, #020611 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* GRID TECNOLÓGICO */
.hero-bg-anim {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(0,255,255,0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: heroGridMove 40s linear infinite;
    opacity: 0.4;
    z-index: 0;
}

/* GLOW AMBIENTAL */
.hero-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0,140,255,0.25), transparent 70%);
    filter: blur(140px);
    animation: heroGlowPulse 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* CONTENEDOR */
.hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 20px 80px 20px;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
}

/* BADGE */
.hero-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00c6ff;
    margin-bottom: 16px;
}

/* TITULO */
.hero-title {
    margin-bottom: 20px;
    /*line-height: 1.2;*/
    font-weight: 600;
}

.hero-static {
    display: block;
    font-size: 22px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
}

.hero-dynamic {
    display: block;
    font-size: 34px;
    background: linear-gradient(90deg, #00c6ff, #0072ff, #00f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* SUBTITULO */
.hero-subtitle {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

/* SERVICES */
.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.service-pill {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 9px 14px;
    border: 1px solid rgba(0,195,255,0.4);
    color: #00c6ff;
    text-decoration: none;
    background: rgba(0,195,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-pill:hover {
    border-color: #00c6ff;
    color: #ffffff;
    background: rgba(0,195,255,0.18);
    transform: translateY(-3px);
}

/* BOTONES */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-btn {
    display: inline-block;
    padding: 13px 22px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.hero-btn.primary {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    color: #ffffff;
    border: none;
    border-radius: 40px;
    box-shadow: 0 0 20px rgba(0,150,255,0.4);
}

.hero-btn.primary:hover {
    box-shadow: 0 0 40px rgba(0,150,255,0.7);
    transform: translateY(-3px);
}

/* PARTICLES */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ANIMACIONES */
@keyframes heroGridMove {
    from { transform: translateY(0); }
    to { transform: translateY(60px); }
}

@keyframes heroGlowPulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
}

/* RESPONSIVE */

@media (min-width: 768px) {

    .hero-static { font-size: 28px; }

    .hero-dynamic { font-size: 52px; }

    .hero-subtitle {
        font-size: 17px;
        max-width: 620px;
    }

    .hero-cta {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {

    .hero { min-height: 95vh; }

    .hero-container {
        padding: 160px 40px 120px 40px;
    }

    .hero-static { font-size: 32px; }

    .hero-dynamic { font-size: 64px; }

    .hero-subtitle {
        font-size: 18px;
        max-width: 680px;
        margin-bottom: 40px;
    }

    .hero-btn {
        padding: 14px 26px;
        font-size: 12px;
    }
}

@media (min-width: 1280px) {

    .hero-container {
        padding: 180px 40px 140px 40px;
    }

    .hero-dynamic {
        font-size: 65px;
    }

    .hero-subtitle {
        font-size: 19px;
        max-width: 720px;
    }
}