*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;

}
.contenedor{
    padding: 60px 0;
    width:90% ;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.titulo{
    color: rgb(237, 159, 25);
    font-size: 30px;
    text-align: center;
    margin-bottom : 60px;

}

header{
    width:100% ;
    height: 600px; ;
    background: url(Compañeros.jpg);
    background-size:cover ;
    background-attachment: fixed;
    position: relative;
 
    

}


nav{
    text-align: left;
    padding: 30px 50px 0 0;
    margin-left: 3%;

}

nav> a{
    color:rgb(249, 212, 6);
    font-weight: 300;
    text-decoration: none;
   margin-right: 10px;

}


nav> a:hover{
    text-decoration: underline;
   }

.Ola{
    position: absolute;
    bottom: 0;
    width: 100%;

}

header .texto-header{
    display: flex;
    height: 430px;
    width: 100%;
    align-items: center ;
    justify-content: center;
    flex-direction: column;
    
}

.texto-header h1{
    font-size: 50px;
    color: rgb(253, 250, 250);
}


.texto-header h2{
      font-size: 30px;
      font-weight: 300;
      color: rgb(242, 242, 238);
      text-align: center;
}



.hero {
    height: 100vh;
    background: url('fondo-taller.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-content {
    animation: fadeIn 2s ease-in-out;
}

h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}



.btn:hover {
    background-color: #f9fafa;
}

/* Sección Historia */
.section {
    padding: 80px 20px;
    text-align: center;
}

.historia {
    background-color: #f4f4f4;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.texto-historia {
    flex: 1;
    padding: 20px;
    text-align: left;
    animation: fadeInLeft 1.5s ease-in-out;
}

.texto-historia h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.texto-historia p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.imagenes-historia {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.imagenes-historia img {
    width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(234, 234, 8, 0.1);
    animation: fadeInUp 2s ease-in-out;
}



/* Footer */
footer {
    background-color: #a8a1a1;
    color: white;
    text-align: center;
    padding: 15px 0;

}

/* Animaciones */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.container{
    width: 100%;
    min-height:  50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
  }
  .galeri{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  grid-gap: 30px;
  
  
  }
  .galeri img{
    width: 100%;
  }
  .mar{
    width: 800px;
    height: 90;
    background-color: rgb(250, 255, 254);
  }