/* Estilos para la sección hero - MODIFICADO */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../assets/images/imagen1.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.hero h1 .destacado {
    color: #FFD700;
    background: linear-gradient(45deg, #FFD700, #FFED4E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    display: block;
    font-size: 8.5rem;
    margin-top: 0.5rem;
    font-weight: 400;
    font-family: 'Italianno', cursive; /* Nueva fuente elegante */
}

.hero h1 .destacado_2 {
    color: #FFD700;
    background: linear-gradient(45deg, #FFD700, #FFED4E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    display: block;
    font-size: 8rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

.hero p {
    font-size: 3.5rem; /* Tamaño aumentado para la fuente cursiva */
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    letter-spacing: 2px;
    font-family: 'Italianno', cursive; /* Nueva fuente elegante */
    font-style: normal;
}

.hero .btn-primary {
    font-size: 1.2rem;
    padding: 16px 45px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    font-weight: 600;
    background: linear-gradient(135deg, #e63946, #c1121f);
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif; /* Mantener fuente sans-serif para el botón */
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #c1121f, #a4161a);
    border-color: #FFD700;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Animación para el contenido del hero */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto parallax para crear profundidad */
.hero {
    background-attachment: fixed;
}

/* Responsive para la sección hero */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.8rem;
                
    }
    
    .hero h1 .destacado {
        font-size: 4.2rem;
        font-family: 'Italianno', cursive; /* Nueva fuente elegante */
        
    }
    
    .hero p {
        font-size: 2.2rem; /* Ajuste para tablet */
        margin-bottom: 1.5rem;
        line-height: 1.2;
        font-family: 'Italianno', cursive; /* Nueva fuente elegante */
        letter-spacing: 1px;
        font-style: normal;
        font-weight: 400;
                
    }

    
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero h1 .destacado {
        font-size: 3rem;
        margin-top: 0.3rem;
    }
    
   .hero p {
        font-size: 2.2rem; /* Ajuste para tablet */
        margin-bottom: 1.5rem;
        line-height: 1.2;
        font-family: 'Italianno', cursive; /* Nueva fuente elegante */
        letter-spacing: 1px;
        font-style: normal;
        font-weight: 400;
                
    }
    
    .hero .btn-primary {
        padding: 14px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h1 .destacado {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.6rem; /* Ajuste para tablet */
        margin-bottom: 1.5rem;
        line-height: 1.2;
        font-family: 'Italianno', cursive; /* Nueva fuente elegante */
        letter-spacing: 1px;
        font-style: normal;
        font-weight: 400;
                
    }
    
    .hero .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 400px) {
    .hero p {
        font-size: 2.2rem; /* Ajuste para tablet */
        margin-bottom: 1.5rem;
        line-height: 1.2;
        font-family: 'Italianno', cursive; /* Nueva fuente elegante */
        letter-spacing: 1px;
        font-style: normal;
        font-weight: 400;
                
    }
}