
/* ===========================
   HERO PEEK LAYOUT
   =========================== */
.home-header {
    min-height: 88vh; /* ❗ Ocupa casi toda la pantalla */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 20px 60px;
    background: transparent;
    position: relative;
}

/* ===========================
   TEXTO
   =========================== */
.header-text {
    flex: 1;
    color: #ffffff;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.5;
    color: #f0f4ff;
    max-width: 520px;
}

.hero-subtitle span {
    font-weight: 700;
    color: #ff6b9a;
}

/* ===========================
   IMAGEN (más grande)
   =========================== */
.header-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-image img {
    width: clamp(280px, 45vw, 440px); /* ❗ Más grande */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.25));
}

/* ===========================
   SCROLL INDICATOR ELEGANTE
   =========================== */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 46px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0.8;
}

.scroll-wheel {
    width: 6px;
    height: 10px;
    background: rgba(255,255,255,0.9);
    border-radius: 4px;
    margin-top: 6px;
    animation: scrollWheel 1.4s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 0; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(8px); }
    100% { opacity: 0; transform: translateY(16px); }
}

/* ===========================
   ANIMACIONES
   =========================== */
.fade-in-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-image {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.4s ease forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
    .home-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        min-height: 78vh;
    }

    .scroll-indicator {
        bottom: 10px;
    }
}
