/* SLIDE */
.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* OVERLAY OSCURO */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

/* CONTENIDO */
.content {
    position: relative;
    z-index: 2;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 170px;
}

/* SUBTITULO */
.sub {
    color: #ff7a00;
    font-weight: bold;
    letter-spacing: 2px;
}

/* TITULO */
.content h1 {
    font-size: 60px;
    font-weight: 800;
    margin: 20px 0;
}

.highlight {
    color: #ff7a00;
}

/* TEXTO */
.content p {
    max-width: 500px;
    color: #ddd;
}

/* BOTONES */
.buttons {
    display: flex;
    align-items: center; /* 👈 alinea vertical */
    gap: 15px; /* espacio entre botones */
}

/* MISMA ALTURA */
.btn-quote,
.btn-light-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px; /* 👈 clave */
    padding: 0 25px;
}

.btn-main {
    background: #ff7a00;
    color: #fff;
    margin-right: 10px;
}

.btn-light {
    background: #fff;
    color: #000;
}

/* FLECHAS */
.custom-arrow {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
}

/* ================= RESPONSIVE HERO ================= */

/* LAPTOP */
@media (max-width: 1200px) {
    .content {
        margin-left: 100px;
    }

    .content h1 {
        font-size: 50px;
    }
}

/* TABLET */
@media (max-width: 992px) {

    .hero-slide {
        height: 80vh;
    }

    .content {
        margin-left: 60px;
    }

    .content h1 {
        font-size: 40px;
    }

    .content p {
        max-width: 400px;
    }
}

/* MOBILE GRANDE */
@media (max-width: 768px) {

    .hero-slide {
        height: auto;
        padding: 120px 20px 60px;
    }

    .content {
        margin-left: 0; /* 👈 CLAVE */
        top: 0;
        transform: none;
        text-align: left;
    }

    .content h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .content p {
        font-size: 14px;
    }

    .buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-quote,
    .btn-light-custom {
        width: 100%;
        justify-content: center;
    }
}

/* MOBILE PEQUEÑO */
@media (max-width: 480px) {

    .content h1 {
        font-size: 26px;
    }

    .sub {
        font-size: 12px;
    }

    .content p {
        font-size: 13px;
    }
}