.home {
  background-color: black;
}

.home .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding: 30px;*/
  padding: 6rem 5% 1rem;
}

.home-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.home-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  /*animation: float 4s ease-in-out infinite;*/
  /*filter: drop-shadow(0 0 0.1rem rgb(189, 189, 189));*/
}

.home-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-details {
  padding: 10px;
  color: #fefeff;
}

.home-content .hero-details h1 {
  font-family: "Marko One", serif;
  font-weight: 400;
  font-style: normal;
}

.hero-details .title {
  text-align: right;
}

.home-content .hero-details .subtitle {
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-size: 25px;
  text-align: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title img {
  margin-bottom: 30px;
}

.buttons a {
  text-decoration: none;
}

.hero-details .buttons {
  display: flex;
  flex-direction: row-reverse;
  gap: 23px;
  margin-top: 25px;
  font-weight: 400;
  font-family: "Exo", sans-serif;
}

.buttons .button {
  padding: 15px 40px;
  border: none;
  outline: none;
  color: aliceblue;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 12px;
}

.buttons .button::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.buttons .button::before {
  content: "";
  background: linear-gradient(
    45deg,
    #ffffff,
    #5c5b5a,
    #eeeeec,
    #787978,
    #c3b8b2,
    #fefeff,
    #9a9899,
    #d7d0d0
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
  opacity: 0;
}

@keyframes glowing {
  0% {
    background-position: 50% 0;
  }
  50% {
    background-position: 200% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.buttons .button:hover::before {
  opacity: 1;
}

.buttons .button:active::after {
  background: transparent;
}

.buttons .button:active {
  color: #000;
  font-weight: bold;
}

/*
.hero-details .button{
  padding: 10px 26px;
  border: 2px solid #f5f4f3;
  color: #ffffff;
  border-radius: 25px;
  background: black;
  font-weight: bold;
  transition: 0.3s ease;
}*/

/*
.hero-details .button:hover,
.hero-details .contact-us {
  color: #000000;
  border-color: #f5f4f3;
  background: transparent;
}*/

.gallery-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  gap: 20px;
}

.gallery-item img {
  width: 300px;
  border-radius: 5px;
}

.gallery-item .card {
  transition: 0.5s ease;
  cursor: pointer;
}

.gallery-item:hover > :not(:hover) {
  opacity: 0.3;
}

.gallery-item .card:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  gap: 0;
}

.opinar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-emphasis: center;
  background-color: #1e272e;
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

/* nav logo
.logo{
  font-size: 1.8rem;
  font-weight: 700;
  color: blueviolet;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}*/

@media (max-width: 1100px) {
}

@media (max-width: 900px) {
}

@media (max-width: 700px) {
  

  .home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .hero-details {
    text-align: center;
  }

  .hero-details .title {
    text-align: center;
  }

  .home-content .hero-details h1{
    font-size: 25px;
  }

  .home-content .hero-details .subtitle {
    text-align: center;
    justify-content: center;
    font-size: 16px;
    padding: 0 0 20px;
  }

  .home-image {
    padding: 10px;
  }

  .hero-details .buttons {
    flex-direction: row;
    justify-content: center;   /* centra horizontal */
    gap: 10px;
  }

  .buttons .button {
    padding: 10px 20px;   /* reduce tamaño */
    font-size: 14px;      /* texto más pequeño */
  }

  .hero-details .buttons {
    gap: 10px;            /* menos espacio entre botones */
  }

}

@media (max-width: 610px) {
}

@media (max-width: 425px) {
  .buttons .button {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 375px) {
}

@media (max-width: 320px) {
}
