* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Montserrat", sans-serif;
  background-color: #101010ee;
}


/*body*/
.hero {
  position: relative;
  height: 100vh;
  overflow-x: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* Ajusta la altura según sea necesario */
  background: linear-gradient(to bottom, rgba(25, 25, 25, 0), #000);
  z-index: 2;
}

.background-gallery {
  display: flex;
  height: 100%;
  transition: transform 1s ease;
}

.fondo {
  min-width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: white;
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-content {
  margin-left: 2em;
  max-width: 50%;
  margin-bottom: 10%;
}

.overlay h3 {
  text-shadow: 2px 2px 15px #000;
  font-weight: 500;
  font-size: 1.25rem;
  margin-top: 20%;
}

.overlay h3 span {
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}

.overlay h2 {
  font-size: 3.6rem;
  font-weight: bold;
  margin: 20px 0;
}

.overlay p {
  max-width: 700px; /* Ancho máximo para la legibilidad en diferentes pantallas */
  font-family: 'Montserrat', sans-serif; /* Fuente moderna y profesional, considera importarla de Google Fonts */
  font-size: 1.25rem; /* Tamaño de fuente ligeramente ajustado para equilibrio */
  line-height: 1.6; /* Espaciado entre líneas para mejor lectura */
  color: #f8f8f8; /* Color de texto blanco suave para contraste */
  background-color: rgba(0, 0, 0, 0.4); /* Fondo semi-transparente sutil para la legibilidad */
  padding: 5px 15px; /* Relleno interno para que el texto no toque los bordes */
  border-radius: 8px; /* Bordes ligeramente redondeados para un toque moderno */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), /* Sombra más suave y extendida para un efecto flotante */
              0 4px 10px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Sombra de texto sutil para definición sin ser muy pesada */ /* Centrar el texto para una presentación limpia */
}

.overlay button {
  margin-top: 20px;
  background-color: #ffc400;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s ease-in-out;
}

.overlay button:hover {
  transform: scale(1.1);
}

.tarjetas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 50px;
  margin-right: 60px;
}

.tarjetas .card-container {
  width: 160px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.tarjetas img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 1s ease;
}

.tarjetas img.slide-out {
  transform: translateY(-100%);
}

.tarjetas img.slide-in {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .overlay {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    justify-content: flex-start;
  }

  .text-content {
    margin-left: 0;
    max-width: 90%;
    margin-bottom: 20px;
    text-align: center;
  }

  .overlay h3 {
    font-size: 1rem;
    margin-top: 10%;
  }

  .overlay h2 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
    max-width: 100%;
  }

  .overlay button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .tarjetas {
    flex-direction: row;
    align-items: center;
    margin-right: 0;
    margin-top: 20px;
    gap: 15px;
  }

  .tarjetas .card-container {
    width: 140px;
    height: 180px;
  }
}

/* information point*/
.explore-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* Patrón decorativo inspirado en textiles mexicanos */
.explore-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 196, 0, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 69, 0, 0.1) 100%
  );
  opacity: 0.3;
  z-index: 0;
}

/* Animación de estrellas */
.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 50%;
  animation: twinkle 5s infinite;
  opacity: 0.5;
}

@keyframes twinkle {
  0% {
    opacity: 0.2;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0.2;
    transform: scale(0.5);
  }
}

.explore-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.title_search {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffc400;
  text-transform: uppercase;
  margin: 20px 0;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-container {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.search-container input[type="text"] {
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #ffc400;
  border-radius: 8px 0 0 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 70%;
  max-width: 400px;
  height: 3em;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.search-container input[type="text"]:focus {
  border-color: #ff4500;
  background-color: rgba(255, 255, 255, 0.2);
}

.search-container button {
  height: 3em;
  padding: 10px 15px;
  border: 2px solid #ffc400;
  border-left: none;
  border-radius: 0 8px 8px 0;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.search-container button img {
  width: 20px;
  height: 20px;
  filter: invert(81%) sepia(72%) saturate(1269%) hue-rotate(359deg)
    brightness(101%) contrast(101%); /* Dorado */
  transition: filter 0.3s ease;
}

.search-container button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ff4500;
}

.search-container button:hover img {
  filter: invert(36%) sepia(93%) saturate(1652%) hue-rotate(357deg)
    brightness(97%) contrast(104%); /* Rojo */
}

.subtitle_explore {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #ffc400;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #ffc400;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border-color: #ff4500;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.1);
}

.card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.8)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .overlay {
  opacity: 1;
}

.card .overlay h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.card .overlay p {
  font-size: 0.9rem;
  color: #d1d5db;
  max-width: 80%;
  text-align: center;
  margin-bottom: 1rem; /* Espacio para el botón */
}

.card .cta {
  padding: 8px 20px;
  background-color: #ffc400;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.card .cta:hover {
  background-color: #ff4500;
  transform: scale(1.05);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .explore-section {
    padding: 60px 20px;
  }

  .title_search {
    font-size: 1.25rem;
  }

  .search-container input[type="text"] {
    width: 80%;
    font-size: 0.95rem;
    padding: 10px;
  }

  .search-container button {
    padding: 8px 12px;
  }

  .search-container button img {
    width: 18px;
    height: 18px;
  }

  .subtitle_explore {
    font-size: 2rem;
  }

  .explore-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card img {
    height: 180px;
  }

  .card .overlay h2 {
    font-size: 1.25rem;
  }

  .card .overlay p {
    font-size: 0.85rem;
  }

  .card .cta {
    font-size: 0.95rem;
    padding: 6px 16px;
  }
}

@media (max-width: 480px) {
  .explore-section {
    padding: 40px 15px;
  }

  .title_search {
    font-size: 1.125rem;
  }

  .search-container input[type="text"] {
    font-size: 0.9rem;
  }

  .search-container button img {
    width: 16px;
    height: 16px;
  }

  .subtitle_explore {
    font-size: 1.75rem;
  }

  .card img {
    height: 160px;
  }

  .card .overlay h2 {
    font-size: 1.125rem;
  }

  .card .overlay p {
    font-size: 0.8rem;
  }

  .card .cta {
    font-size: 0.9rem;
  }
}
/* About Section Styles */
.about-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* Patrón decorativo inspirado en textiles mexicanos */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 196, 0, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 69, 0, 0.1) 100%
  );
  opacity: 0.3;
  z-index: 0;
}

/* Animación de estrellas */
.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 50%;
  animation: twinkle 5s infinite;
  opacity: 0.5;
}

@keyframes twinkle {
  0% {
    opacity: 0.2;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0.2;
    transform: scale(0.5);
  }
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-content .logo {
  margin-bottom: 2rem;
}

.about-content .logo img {
  height: 4em;
  width: auto;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffc400;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.about-cta {
  margin-top: 2rem;
}

.about-cta a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffc400;
  color: #000000;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-cta a:hover {
  background-color: #ff4500;
  transform: scale(1.05);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-content .logo img {
    height: 3.5em;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item img {
    height: 200px;
  }

  .about-cta a {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-content .logo img {
    height: 3em;
  }

  .about-content h2 {
    font-size: 1.75rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .gallery-item img {
    height: 180px;
  }

  .about-cta a {
    font-size: 0.95rem;
  }
}
.services-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* Patrón decorativo inspirado en textiles mexicanos */
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 196, 0, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 69, 0, 0.1) 100%
  );
  opacity: 0.3;
  z-index: 0;
}

/* Animación de estrellas */
.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 50%;
  animation: twinkle 5s infinite;
  opacity: 0.5;
}

@keyframes twinkle {
  0% {
    opacity: 0.2;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0.2;
    transform: scale(0.5);
  }
}
/*service content*/
.services-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffc400;
  margin-bottom: 1rem;
}

.services-content p {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #ffc400;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border-color: #ff4500;
}

.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  transition: filter 0.3s ease;
}

.service-card:hover img {
  filter: invert(36%) sepia(93%) saturate(1652%) hue-rotate(357deg)
    brightness(97%) contrast(104%); /* Rojo */
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.5;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }

  .services-content h2 {
    font-size: 2rem;
  }

  .services-content p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .service-card img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 15px;
  }

  .services-content h2 {
    font-size: 1.75rem;
  }

  .services-content p {
    font-size: 0.9rem;
  }

  .service-card h3 {
    font-size: 1.125rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-card img {
    width: 40px;
    height: 40px;
  }
}
/* Contact Section Styles */
.contact-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* Patrón decorativo inspirado en textiles mexicanos */
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 196, 0, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 69, 0, 0.1) 100%
  );
  opacity: 0.3;
  z-index: 0;
}

/* Animación de estrellas */
.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 50%;
  animation: twinkle 5s infinite;
  opacity: 0.5;
}

@keyframes twinkle {
  0% {
    opacity: 0.2;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0.2;
    transform: scale(0.5);
  }
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffc400;
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-form label {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #ffc400;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff4500;
  background-color: rgba(255, 255, 255, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  padding: 12px 30px;
  background-color: #ffc400;
  color: #000000;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: center;
}

.contact-form button:hover {
  background-color: #ff4500;
  transform: scale(1.05);
}

/* Borde decorativo con motivo mexicano */
.contact-form .form-group::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #ffc400 0%, #ff4500 50%, #ffc400 100%);
  margin-top: 0.25rem;
  opacity: 0.5;
  border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-content h2 {
    font-size: 2rem;
  }

  .contact-content p {
    font-size: 1rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 10px;
  }

  .contact-form button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-content h2 {
    font-size: 1.75rem;
  }

  .contact-content p {
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.9rem;
  }

  .contact-form button {
    font-size: 0.95rem;
  }
}

/* Footer Styles */


