*{
    margin: 0;
    padding: 0;
}

/*Estilos Hero*/

.hero{
  height:600px;
  background-image: url("../img/basica/bannerbasica.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position:center ;
  overflow: hidden;
}
.hero-fondo{
  height: 600px;
  background-color:rgba(4,7,32,0.7) ;
  display: flex;
  justify-content: left;
  flex-wrap: nowrap; 
}

/*Estilos del banner*/

.cover{
  width: 100%;
  padding-bottom: 60px;
  font-family: 'Poppins',sans-serif;
  margin-top: 100px;
}

.container__cover{
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.cover .container__info{
  max-width: 580px;
  margin-top: 40px;
}
.cover h1{
  max-width: 580px;
  font-size: 50px;
  font-weight: 900;
  color: #fff;
}
.cover h2{
  font-size: 60px;
  font-weight: 900;
  color: #05f0c1;
  margin-top: -30px;
}

.cover p{
  margin-top: 10px;
  font-size: 20px;
  color: #fff;
}

/*Estilos de boton del banner*/

.custom-button {
  display: inline-block;
  padding: 10px 10px;
  margin-top: 10px 10px;
  font-size: 20px;
  background-color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  border: none;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}

.custom-button:hover {
  background-color: #013b01;
  color: #ffffff;
}

.custom-button:focus {
  outline: none;
}

.custom-button:active {
  background-color: #01380b;
}

/*Estilos de Iconos*/
.texto h5{
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 20px;
}
.iconos{
  font-size: 140px;
  color: #fff !important;
  margin-top: 15px;
}

/*------ Estilos Galeria----------*/

.gallery{
  width: 100%;
  height: auto;
  text-align: center;
  margin: auto;
}
.gallery img{
  width: 368px;
  height: 240px;;
  transition: 0.5s;
}
.gallery img:hover{
  filter: grayscale(80%);
  transform: scale(1.02);
}

/* Estilo Acordeon */

.accordion{
  background-color: #013b01;
}

.accordion-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #013a0e;
  color: #ffffff;
  border: none;
  border-radius: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.accordion-button:hover, .accordion-button:not(.collapsed) {
  background-color: #c3e6cb;
  color: #0c3c1e;
}

.accordion-body {
  background-color: #e9f7ef;
  color: #155724;
  padding: 15px;
  font-size: 1rem;
}

.accordion-item {
  border-bottom: 3px solid #c3e6cb;
}