/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif; /* Aplicado según especificación de Figma */
}

/* Overlay semitransparente */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.28) 65%, rgba(0, 0, 0, 0.12) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

/* =========================================
   TIPOGRAFÍA HERO
   ========================================= */
.hero-overline {
    display: flex;
    align-items: center; /* Alinea la línea y el texto verticalmente */
    gap: 16px; /* Espaciado entre la línea y el texto */
    color: #FFF;
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: 2.35px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Generación de la línea horizontal */
.hero-overline::before {
    content: '';
    display: block;
    width: 40px; /* Ancho de la línea */
    height: 2px; /* Grosor de la línea */
    background-color: #F47520; /* Color naranja */
}

.hero-title {
    color: #FFF;
    font-size: 72px;
    font-weight: 400;
    line-height: 79.2px;
    letter-spacing: -2.16px;
    margin: 0 0 24px 0;
}

.hero-title .text-orange {
    color: #F47520; /* Color extraído para "elevated" */
}

.hero-description {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 700px; /* Límite de ancho para mantener legibilidad */
    margin-bottom: 48px;
}

/* =========================================
   BOTONES HERO
   ========================================= */
.hero-buttons {
    display: flex;
    gap: 24px; /* Espacio entre los dos botones */
    flex-wrap: wrap;
}

/* Estructura base para ambos botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px; /* Simplificación del valor 33554400px para bordes redondeados */
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: 2.35px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Botón 1 (Blanco) */
.btn-primary {
    background: #FFF;
    color: #000000;
    gap: 10px; /* Espacio interno entre el texto y la flecha */
}

/* Botón 2 (Contorno) */
.btn-outline {
    background: transparent;
    border: 1px solid #FFF;
    color: #FFF;
}