* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* outline: 1px solid #f00 !important; */
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html {
  font-family: "Poppins", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-color: #1e083d;
}
h1 {
  color: rgb(214, 214, 214);
  font-size: 2.3rem;
}
h2 {
  color: #bc6fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
h3 {
  font-size: 1.8rem;
  color: rgb(214, 214, 214);
}
.title_des {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-top: 7rem;
}

.title_des img {
  width: 80vw;
  max-width: 500px;
  height: auto;
}

.slots_img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.slots_img img {
  width: 85vw;
  max-width: 500px;
}

.texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-color: yellow;
  padding: 2rem 0;
  width: 80vw;
  max-width: 500px;
  background-color: transparent;
  border-radius: 1.5rem;
  opacity: 0.9;
}

.texto h2 {
  color: yellow;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 1rem;
}

.texto p {
  font-size: 1.4rem;
  color: #fafafa;
  font-weight: 700;
  text-align: center;
}

.datos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80vw;
  max-width: 500px;
}

.datos p {
  color: #fafafa;
  font-size: 1.4rem;
  margin: 4rem 0;
  line-height: 1.6;
  text-align: center;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 80vw;
  max-width: 500px;
  padding: 12px;
  border-radius: 1rem;
  margin-top: 6px;
  margin-bottom: 16px;
  font-size: 1.6rem;
  border-width: 0;
  color: #2d353c;
  font-family: "Poppins", sans-serif;
}

form .btn_enviar {
  background-color: #1a9dfc;
  color: white;
  padding: 12px 20px;
  border-radius: 1.5rem;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  width: 80vw;
  max-width: 500px;
  height: 5rem;
  border-width: 0;
  -webkit-appearance: none;
  margin: 2rem 0 5rem 0;
}

.header {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 6rem;
  position: fixed;
  top: 0;
  z-index: 100;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: scroll;
  background-color: #fff;
  font-size: 1.3rem;
  padding-left: 2rem;
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}

.header li a:hover {
  background-color: #f4f4f4;
}

.header .logo {
  display: block;
  float: left;
  padding: 16px 20px;
  text-decoration: none;
  width: 16rem;
  height: auto;
}

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
.header .menu-icon {
  cursor: pointer;
  display: block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}
.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 500px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

a {
  all: unset;
}

footer {
  background-color: #838383;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
.footer__contacto {
  padding: 1rem;
  font-size: 1.3rem;
  color: white;
}
.footer__contacto--tel p {
  font-weight: 600;
  padding: 2rem;
  text-decoration: none;
  font-size: 1.4rem;
}
.footer__contacto--dir p {
  line-height: 1.5;
  padding-bottom: 2rem;
}
.footer__copyright {
  background-color: var(--footer);
  padding: 2rem;
  background-color: #f2f2f2;
  color: #2d353c;
  font-size: 1.1rem;
}
