* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  overflow-x: hidden;
  background-color: #20253e;
}
/*
#ce865d 
#20253e
#4fb9a7
#723646
#5b7aa2
*/

.pic {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(15px);
}

.content {
  background-color: #20253e;
}

.titulo h1 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #723646;
  font-size: 9em;
  text-align: center;
  text-shadow: 2px 2px 4px #ce865d;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.subtitulo h2 {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  color: #ce865d;
  font-size: 3em;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(121, 121, 121, 0.781);
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

button.ver-mas {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #20253e;
  color: #ce865d;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

button.ver-mas:hover {
  background-color: #723646;
}

.titulo-cajas {
  padding-top: 150px;
  color: #ce865d;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(121, 121, 121, 0.781);
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.info-cajas {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background-color: #20253e;
  color: #ce865d;
}

.caja {
  background-color: #723646;
  border: 1px solid #723646;
  border-radius: 10px;
  padding: 20px 40px;
  margin-top: 50px;
  width: 45%; /* Ancho de las cajas */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.caja h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  margin-bottom: 10px;
}

.caja p {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5em;
  margin-bottom: 20px;
}

button.ver-mapa {
  background-color: #20253e;
  color: #ce865d;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px; /* Asegura que el botón se coloca debajo del texto */
}

button.ver-mapa:hover {
  color: #723646;
}

.timer-container {
  text-align: center;
  margin-top: 40px;
  background-color: #ce865d;
  color: #723646;
  padding-bottom: 20px;
}

.timer-container p {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 33px;
  margin-bottom: 10px;
  padding: 10px;
}

span {
  margin-left: 50px;
}

.timer {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 66px;
}

button.confirmation {
  bottom: 20px;
  background-color: #20253e;
  color: #ce865d;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease; /* Efecto de transición */
}

button.confirmation:hover {
  color: #723646;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: #20253e;
}
::-webkit-scrollbar-thumb {
  background-color: #723646;
}

@media only screen and (max-width: 600px) {
  .titulo h1 {
    font-size: 4.8em;
  }
  .subtitulo h2 {
    font-size: 1.7em;
  }
  .info-cajas {
    display: block;
    justify-content: center;
    align-items: flex-start;
  }
  .caja {
    padding: 20px 40px;
    margin-top: 50px;
    width: 100%;
  }

  span {
    display: inline;
    text-align: center;
    margin-left: 20px;
  }

  .timer-container p {
    font-size: 1.2em;
  }
  .timer {
    font-size: 1.2em;
  }

  .titulo-cajas {
    font-size: 1.5em;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .titulo h1 {
    font-size: 5em;
  }
  .subtitulo h2 {
    font-size: 1.75em;
  }
  .timer-container p {
    font-size: 2em;
  }
  .timer {
    font-size: 2em;
  }
  .titulo-cajas {
    font-size: 1.8em;
  }
}

@media only screen and (min-width: 768px) {
  .titulo h1 {
    font-size: 5.75em;
  }
  .subtitulo h2 {
    font-size: 1.9em;
  }
  .timer-container p {
    font-size: 2.7em;
  }
  .timer {
    font-size: 2.7em;
  }
}

@media only screen and (min-width: 992px) {
  .titulo h1 {
    font-size: 7em;
  }
  .subtitulo h2 {
    font-size: 2.1em;
  }
  .titulo-cajas {
    font-size: 2em;
  }
}

@media only screen and (min-width: 1200px) {
  .titulo h1 {
    font-size: 8em;
  }
  .subtitulo h2 {
    font-size: 2.2em;
  }
}

/* inicia css footer */
footer {
  width: 100%;
  padding: 10em 5em 1em 5em;
  font-family: "Bebas Neue", sans-serif;
}

.contenedor-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lista-footer {
  display: flex;
  flex-direction: column;
  margin: 10px 0px;
}

.footer-link {
  color: #ce865d;
  font-weight: 400;
  font-size: medium;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ce865d;
}

.derechos {
  color: #ce865d;
  font-size: medium;
  font-weight: 400;
  text-align: center;
  margin-top: 0;
}

.derechos a {
  color: #ce865d;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-right: 50px;
}
.social-icons img {
  width: 30px;
  height: auto;
  transition: transform 0.3s ease;
}
.social-icons a:hover img {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  footer {
    padding: 10em 1.5em 0.5em 1.5em;
  }
  .contenedor-footer {
    display: inline;
  }
  .social-icons {
    margin-right: 0px;
    margin-top: 20px;
    gap: 10px;
    justify-content: center;
  }
  .social-icons img {
    margin: 10px;
  }
  .lista-footer {
    margin: 10px 10px;
  }
  .footer-link:hover {
    color: #ce865d;
  }
  .derechos {
    margin-top: 15px;
  }
  .derechos a {
    color: #ce865d;
    text-decoration: none;
  }
}
/* cierra css footer */
