/* === HERO SECTION FOR EQUIPO (Ported from Clientes) === */
.bg-gradient-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(3, 0, 131, 0.03) 1px, transparent 0);
    background-size: 32px 32px;
    z-index: -1;
    pointer-events: none;
}

.hero-section {
    background: linear-gradient(135deg, #020052 0%, #030083 40%, #0a00b8 100%);
    position: relative;
    padding: 100px 24px 80px;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(81, 209, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(254, 127, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out 2s infinite alternate;
}

@keyframes heroGlow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(30px, -20px); }
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape--1 {
    width: 200px;
    height: 200px;
    background: #51d1f6;
    top: 10%;
    right: 8%;
    animation: floatShape 12s ease-in-out infinite;
}

.hero-shape--2 {
    width: 120px;
    height: 120px;
    background: #fe7f00;
    bottom: 15%;
    left: 5%;
    animation: floatShape 10s ease-in-out 2s infinite reverse;
}

.hero-shape--3 {
    width: 80px;
    height: 80px;
    background: #d9d9d9;
    top: 30%;
    left: 15%;
    border-radius: 16px;
    animation: floatShape 14s ease-in-out 4s infinite;
    transform: rotate(45deg);
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(10px) rotate(-3deg); }
    75% { transform: translateY(-15px) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(81, 209, 246, 0.12);
    border: 1px solid rgba(81, 209, 246, 0.25);
    border-radius: 9999px;
    color: #7edcf8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    animation: fadeInDown 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fe7f00, #ff9a33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInDown 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat__number .stat-accent {
    color: #fe7f00;
}

.hero-stat__label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero-stat + .hero-stat {
    position: relative;
    padding-left: 40px;
}

.hero-stat + .hero-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
