*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

/* --- CONTENEDOR PRINCIPAL --- */
.hero_aventura-wrapper {
    position: relative;
    width: 100%;
    height: 800px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    background-size: cover;
    background-position: center bottom; 
    background-repeat: no-repeat;
    background-color: #FDF3EF; 
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* --- DESENFOQUE SUPERIOR --- 
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* aumentar el alto a 60% o 100% para que el degradado tenga espacio para ser suave 
    height: 100%; 
    z-index: 2;
    pointer-events: none;

    /* tinte 
    background: rgba(5, 5, 5, 0.1); 

    /* 1. Aplicas el nivel de desenfoque MÁXIMO que quieres 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Soporte para Safari */

    /* 2. La máscara. 
       'black' significa 100% visible (máximo blur)
       'transparent' significa 0% visible (sin blur) 
    */
   /*  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
mask-image: linear-gradient(to bottom, black 0%, transparent 100%);}
 */
  
/* --- CONTENIDO CENTRAL --- */
.hero-content-container {
    position: relative;
    z-index: 5; 
    width: 100%;
    max-width: 900px; 
    padding: 0 20px;
    text-align: center;
    margin-top: -50px; 
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-container h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 100px;
    font-weight: 800; 
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25); 
    letter-spacing: 1px;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px; 
    line-height: 1.5;
    font-weight: 500; 
    margin: 0 auto;
    max-width: 700px; 
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    display: block; 
}

/* --- ICONOS INFERIOR DERECHA --- */
.hero-icons-container {
    position: absolute;
    bottom: 80px; 
    right: 30px;  
    z-index: 9999; 
    display: flex;
    gap: 15px;
}

.hero-icon-box {
    display: flex; 
    width: 50px;
    height: 50px;
    min-width: 50px; 
    min-height: 50px; 
    
    border: 2px solid #FFFFFF; 
    border-radius: 8px;
    
    align-items: center;
    justify-content: center;
    
    background: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(4px);
}

.hero-icon-box img {
    width: 30px; 
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Escritorio */
.hero-icons-container {
    bottom: 100px; 
    right: 50px;
}

/* Móvil  */
@media (max-width: 768px) {
    .hero-icons-container {
        bottom: 60px; 
        right: 50%;
    }
}

/* --- VECTOR INFERIOR --- */
.hero-bottom-vector {
    position: absolute;
    bottom: -1px; 
    left: 0;
    width: 100%;
    z-index: 10;
    line-height: 0;
}

.hero-bottom-vector svg {
    width: 100%;
    height: auto;
    display: block;
    fill: #F7EEEB; 
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .hero-content-container h1 {
        font-size: 70px; 
    }
}

@media (max-width: 768px) {
    .hero_aventura-wrapper {
        height: 600px; 
    }
    
    .hero-content-container h1 {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 16px;
        max-width: 90%;
    }

    .hero-icons-container {
        /* Centrar en móvil */
        bottom: 50px;
        right: 50%;
        transform: translateX(50%);
        gap: 10px;
    }
    
    .hero-icon-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .hero-bottom-vector svg {
        min-height: 50px;
        preserveAspectRatio: none; 
    }
}

