/* HERO */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
}

.slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.65)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.hero-eyebrow {
    color: #DDDDDD;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 4rem;
}

.hero p {
    margin-top: 18px;
    margin-bottom: 35px;
}

/* BOTONES */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 14px 36px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary {
    background: var(--royal-gold);
    color: #000;
}
.btn-primary:hover { background: var(--light-gold); }

.btn-secondary {
    color: var(--royal-gold);
    border: 1px solid var(--royal-gold);
}
.btn-secondary:hover {
    background: rgba(212,175,55,0.2);
}
