*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
}

html {
  font-family: "Josefin Sans", serif;
  box-sizing: border-box;
  font-size: 62.5%;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

body {
  min-height: 100dvh;
  font-size: 1.6rem;
  background-color: #fff;
}

@media only screen and (min-width: 720px) {
  body {
    font-size: 1.6rem;
  }
}

button {
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a,
button {
  text-decoration: none;
  transition: 0.2s ease all;
}

button {
  border: none;
  background: none;
}

button:hover {
  opacity: 0.8;
}

a:hover {
  opacity: 0.8;
}

.cta {
  background: linear-gradient(
    to right,
    #ffcf62 7%,
    #dfa31c 37%,
    #c69421 58%,
    #ad8426 83%
  );
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 4rem;
  cursor: pointer;
  font-weight: bold;
  min-width: 15rem;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

@media only screen and (min-width: 720px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

@media only screen and (min-width: 720px) {
  h2 {
    font-size: 3.7rem;
  }
}

span {
  font-weight: bold;
}

.hidden {
  display: none !important;
}

.shadow {
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 1);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  position: relative;
  background-color: white;
  border: 1px solid #ccc;

  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='100' viewBox='0 0 24 24' width='100' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem;

  /* Escala real de la flecha */
  background-size: 4rem;
}
