/* HERO */
.hero{
    position:relative;
    height:700px;
    overflow:hidden;
}

/* SLIDER */
.slider{
    position:absolute;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.slide.active{
    opacity:1;
}

/* 🔥 OVERLAY REAL (CLAVE) */
.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:1;

    background:
    radial-gradient(circle at 20% 40%, rgba(0,150,50,0.55), transparent 60%),
    linear-gradient(90deg,
        rgba(0,40,10,0.9) 0%,
        rgba(0,40,10,0.7) 35%,
        rgba(0,0,0,0.25) 65%,
        rgba(0,0,0,0.05) 100%
    );
}

/* CONTENIDO */
.hero-content{
    position:absolute;
    z-index:2;
    top:50%;
    left:6%;
    transform:translateY(-50%);
    color:#fff;
    max-width:600px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.1;
    font-weight:800;
}

.hero-content h1 span{
    display:block;
    font-size:72px;
    color:#f2c300;
}

.hero-content p{
    margin-top:15px;
    font-size:18px;
    color:#eee;
}

/* BOTONES */
.hero-buttons{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.btn-primary{
    background:#f2c300;
    padding:15px 25px;
    border-radius:12px;
    color:#111;
    font-weight:700;
    text-decoration:none;
}

.btn-secondary{
    border:2px solid #fff;
    padding:15px 25px;
    border-radius:12px;
    color:#fff;
    text-decoration:none;
}

/* BADGE */
.badge{
    position:absolute;
    right:8%;
    top:20%;
    width:170px;
    height:170px;
    background:#fff;
    border-radius:50%;
    z-index:3;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.badge h2{
    font-size:44px;
    color:#3b7f1e;
}

/* FEATURES */
.features{
    position:absolute;
    bottom:0;
    width:100%;
    background:#fff;
    display:flex;
    justify-content:center;
    gap:40px;
    padding:20px;
    z-index:2;
}

.feature{
    text-align:center;
    font-size:13px;
}

.feature i{
    color:#6aa51c;
    font-size:22px;
}

/* FLOATING */
.floating{
    position:absolute;
    right:15px;
    top:40%;
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:4;
}

.floating a{
    background:#fff;
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}