@font-face {
  font-family: "Zen Dots";
  src: url("../ZenDots-Regular.woff2") format("woff2");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: "Zen Dots", sans-serif;
  overflow-x: hidden;
}

a{
  text-decoration: none;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-index {
  position: absolute;
  left: 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.logo {
  width: 90px;
}

.logo img {
  width: 100%;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("../img/fond-one.png") center/cover no-repeat;
  background-attachment: content;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-textos h2 {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 60px;
}

.trabajos {
  background: #000;
  color: #fff;
  padding: 80px 20px;
}

.contenedor-horizontal {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: auto;
}

/* TEXTO */
.texto {
  width: 30%;
}

.texto h1 {
  font-size: 40px;
}

.texto p {
  color: #aaa;
}

/* CARRUSEL */
.carrusel {
  position: relative;
  width: 70%;
  overflow: hidden;
  padding: 0 45px;
}

.galeria {
  display: flex;
  gap: 40px;
  transition: transform 0.5s ease;
  justify-content: flex-start;
}

.galeria a {
  color: #fff;
  text-decoration: none;
}

/* BOTONES */

.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.prev,
.prev-hobby {
  left: 0;
}

.next,
.next-hobby {
  right: 0;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* CARDS */
.card {
 
  min-width: 250px;
  height: 300px;
  margin-left: -20px;
  overflow: hidden;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card img {

  width: 95%;
  height: 90%;
  object-fit: cover;
}



/* TEXTO ENCIMA */
.card h1 {
  text-align: center;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
}

.btn-minimal {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);

  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-minimal a{
  color: #fff;
  text-decoration: none;
  
}

/* HOVER */
.btn-minimal:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.footer {
  padding: 30px 16px;
 
  color: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: 900px;
  margin: auto;
}

.footer-contact {
  margin: 6px 0;
  font-size: 14px;
  opacity: 0.85;
}

.footer-copy {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.5;
}

/* hover sutil */
.footer-contact:hover {
  opacity: 1;
}

/* responsive deh footer */
@media (min-width: 600px) {


  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-contact,
  .footer-copy {
    margin: 0;
  }

  

}

@media (max-width: 768px) {
  .trabajos {
    padding: 100px 10px;
  }

  .carrusel {
    padding: 0;
    width: 100%;
  }

  .contenedor-horizontal {
    gap: 40px;
    flex-direction: column;
    margin: auto;
    justify-content: center;
    align-items: center;
  }

  .hero {
    background: url("../img/fond-two.png") center/cover no-repeat;
  }

  .hero-textos h2 {
    margin-bottom: 80%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .btn-minimal {
    border: 2px solid rgb(255, 255, 255);
  }

  .texto {
    width: 90%;
  }

  .galeria {
    gap: 0;
    justify-content: flex-start;
  }

  .card {
    min-width: 100%;
    width: 100%;
    height: 280px;
    margin-left: 0;
  }

  .btn {
    display: flex;
  }

  #galeria-hobby {
    justify-content: flex-start;
    transform: none;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 70px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .card {
    min-width: 100%;
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 480px) {
   .carrusel {
    width: 100%;
  
  }

  .trabajos {
  
  color: #fff;
  padding: 100px 10px;
}

  .hero {
    background: url("../img/fond-two.png") center/cover no-repeat;
  }

  h1 {
    font-size: 2.2rem;
  }

  .logo {
    width: 70px;
  }

  .card {
    min-width: 300px;
    height: 330px;
  }
  /* footer */
  
 
}
