/* ========================================
   HERO - SECCIÓN 1
   ======================================== */

.hero-section {
    background-color: #EDE1D0 !important;
    padding: 80px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Sideware Trial', serif !important;
    font-size: 3.5rem;
    color: #32271D !important;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text .subtitle {
    font-family: 'Satoshi', sans-serif !important;
    font-size: 1.2rem;
    color: #32271D !important;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hero-text .tagline {
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.1rem;
    color: #A97B3C !important;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-block;
    background-color: #DBA95F;
    color: #32271D !important;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(219, 169, 95, 0.3);
}

.hero-btn:hover {
    background-color: #A97B3C;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(219, 169, 95, 0.5);
}

.hero-image-wrapper {
    position: relative;
}

.hero-golden-box {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: #DBA95F;
    border-radius: 20px;
    z-index: 1;
}

.hero-real-photo {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(50, 39, 29, 0.2);
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-golden-box {
        top: 15px;
        right: -15px;
    }
}