/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    transform: translateY(3vh);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-heading {
    margin-bottom: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-title {
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 1200px;
}

.hero-description {
    margin-bottom: 40px;
    width: 100%;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-cta {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(to right, #0077FF, #00A3FF);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 18px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 119, 255, 0.3);
}

.bg-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8vh;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.6) 0%,
        transparent 100%
    );
    z-index: 1;
}

/* Text Colors */
.text-white {
    color: var(--color-white);
}

.text-blue {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.text-blue::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #0077FF, transparent);
    opacity: 0.5;
}

/* ============================================
   RESPONSIVE - MOBILE HERO TITLE
   ============================================ */

/* Tablets y móviles grandes */
@media (max-width: 968px) {
    .hero-title {
        font-size: clamp(42px, 7vw, 62px) !important;
        line-height: 1.15;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-content {
        padding: 1.5rem;
    }
}

/* Móviles medianos */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(46px, 9vw, 72px) !important;
        line-height: 1.1;
        letter-spacing: -2px;
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.6;
        margin-top: 16px;
    }

    .hero-heading {
        margin-bottom: 32px;
    }

    .hero-container {
        padding: 0 30px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(38px, 11vw, 56px) !important;
        line-height: 1.15;
        letter-spacing: -1.8px;
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-container {
        padding: 0 24px;
    }

    .hero-content {
        padding: 1rem;
    }

    .btn-cta {
        font-size: 16px;
        padding: 14px 28px;
    }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(34px, 10vw, 48px) !important;
        line-height: 1.2;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 15px;
    }
}

/* Landscape en móviles */
@media (max-width: 968px) and (orientation: landscape) {
    .hero-title {
        font-size: clamp(32px, 6vw, 48px) !important;
        line-height: 1.2;
    }

    .hero-container {
        min-height: auto;
        padding: 60px 30px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-top: 12px;
    }

    .hero-heading {
        margin-bottom: 20px;
    }
}