* {
    margin: 0;
  box-sizing: border-box;
}
body {  /* El cuerpo De la pagina */
    text-align: center;
    font-family: sans-serif;
   
}

.header {  /* El Encabezado De la pagina */
    background-color: transparent;
    height: 30px;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    left: 0;
    

}

.no-webp .hero {/*Si , el Navegador No soporta la extencion webp cargara la imagen jpg*/
    background-image: url('../img/landscape2.jpg');


}
.webp .hero {
    background-image: url('../img/landscape2.webp');
   

}
.hero {
    background-image: url('../img/landscape2.jpg');
    /*Es el hero.jpg  La Imagen de la pagina */
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    /* height: 30px;
                        position: fixed;
                        width: 100%;
                        z-index: 100;
                        top: 0;
                        left: 0; */
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 80px 0 0 0;
    margin-bottom: 9rem;
    

}

.hero-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.nav { /* tiene que ver con el texto Inicio, Alabanza,etc */
    display: flex;
  justify-content: space-between;
  max-width: 992px;
  margin:  0 auto;
}

.nav_link { /*Se encarga de darle Color a las Letras de la nav */
    color: white;
    text-decoration: none;

}
.T1 {
  
    text-decoration: none;
    padding-top: 4.8rem;
}
.nav-color {
    background-color: #c41212;
    height: auto;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.75);
}

.nav-color h3 .nav-color a .nav-color i {
    color: #000000;   }
.logo  { /* Son Las Propiedades del Logo */
    font-size: 30px;
    font-weight: bold;
    padding: 0 40px;
    line-height: 80px; 
    color: #fff;
    text-transform: uppercase;
    
}
.logo-container {
    display: flex;
    align-items: center;
    padding-left: 20px;
}
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav_menu {
    display: flex;
    margin-right: 40px;
    list-style: none;


}

 .texto{
    text-align: center;
   
}
.titulo {/* Es una Nombre Vinculado a una clase de texto */
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}
.plan {/* Es una Nombre Vinculado a una clase de texto */
    margin-bottom:18px;
	text-align: justify;
    color: #fff;
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
}
.nav_menu_item  {
    font-size: 18px;
    margin: 0 10px;
    line-height: 80px; 
    text-transform: uppercase;
    width: max-content;
    
    
}
.nav_menu_link {
    padding: 8px 12px;
    border-radius: 3px;

}
.nav_menu_link:hover,
.nav_menu_link_active{
background-color: #790404;
transition: 0.5s;
}
.nav_toggle{ /* Son las Propiedades del Boton Hamburgesa boton mano derecha en version movil */
    color: white;
    background: none;
    border: none;
    font-size: 30px;
    padding: 0 20px;
    line-height: 60px;
    cursor: pointer;
    display: none;
}

.titulo1 {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}

a {
	text-decoration: none;
	color: #000000;
}
Link{
	text-decoration: none;
	color: #000000;
}
.background {
    background-image: url('../img/Footer3.jpg');/*Es el hero.jpg  La Imagen de la pagina */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Establece la altura de la imagen al 100% del viewport height */
    width: 100%; /* Establece el ancho de la imagen al 100% del contenedor */
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .Canciones {
    list-style: none; 
    padding: 0; 
    margin: 0; 
  }
  .Canciones li {
    margin-bottom: 10px; 
    font-size: 16px; 
  }
  .Canciones a {

    font-weight: bold; 
    margin-right: 5px; 
  }
  
  
@media(max-width: 900px){
    
    .header {
       
        height: 60px; 
    
    }
    
    .logo  {
        font-size: 25px;
        font-weight: bold;
        padding: 0 20px;
        line-height: 60px; 
        
    }
    
    .nav_menu {
        flex-direction: column;
        align-items: center;
        margin: 0;
        background-color: #2c3e50f3;
        position: fixed;
        top: 60px;
        width: 100%;
        padding: 20px 0;
        height: calc(100% - 60px);
        overflow-y: auto;
        left: 100%;
        transition: left 0.3s;
        
    }
    
    
    .nav_menu_item  {
        line-height: 70px; 
       
        
        
    }
    .header.header_color {/* Modificar el Index.js en caso de  implementarlo */
        background-color:   rgb(129, 8, 8);   /* Cambia este valor al color que desees */
        transition: right 0.3s;
        right: 100%;
      }
      
    .navmobile {/* Son  Las Letras De las palabras Inicio, Alabanza, Nosotros, etc */
        color: #fff;
        text-shadow:
          3px 3px 2px #000,
          -3px 3px 2px #000,
          -3px -3px 0 #000,
          3px -3px 0 #000;
    }
    
    .nav_menu_link:hover,
    .nav_menu_link_active {
    background: none; 
    color: #b20909;
    }
    .nav_toggle {
        display: block;
    }
    .nav_menu_v {
        left: 0;

    }
    
}

.nav_toggle:focus:not(:focus-visible) {
  outline: none;
}
/* Modo landscpe No Olvidar */

