/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../assets/Firma.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: var(--shadow-lg);
    margin-bottom: 10px;
}

.hero .subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #eee;
    text-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.hero .hero-blurb {
    font-size: 1.1rem;
    color: #ccc;
    text-shadow: var(--shadow-sm);
    margin-top: 15px;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-actions .cta-btn {
    box-shadow: var(--shadow);
}

.hero-actions .secondary-cta-btn {
    box-shadow: var(--shadow);
}

.hero-image {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 400px;
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }
}