/* Estilos personalizados */
@import "tailwind.css";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.active {
  max-height: 500px;
}

button {
  font-weight: 600;
}

header img {
  /* margin-top: 1.1rem; */
  width: 42vw;
}
header button, header a {
  font-weight: 600;
}

body > main > section {
  min-height: 100%;
}
body > main > section#proximos-partidos {
  display: none;
}

section.hero {
  background-color: black;
  position: relative;
  align-items: start;
  flex-direction: column;
}
section.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(header-background.png) no-repeat center center/cover;
  background-size: 291vw;
  background-position: -92vw -18vw;
  opacity: 0.5;
  z-index: 0;
}
section.hero > div:nth-child(2) {
  display: none;
}
section.hero > div:first-child {
  padding-top: 0;
  z-index: 1;
  margin-top: 92vw;
  height: auto;
  display: flex;
  flex-direction: column;
}
section.hero > div:first-child h1 {
  font-size: 11vw;
  line-height: 11vw;
  margin-bottom: 1.3rem;
  white-space: nowrap;
}
section.hero > div:first-child h1 > span:first-child {
  text-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
}
section.hero > div:first-child h1 > span:last-child {
  position: absolute;
  left: 0;
  margin-top: 0;
  top: 3.5vw;
  transform-origin: top left;
  transform: scaleY(0.75);
  z-index: -1;
  color: rgba(0, 0, 0, 0.2117647059);
  color: transparent;
  background-color: #307ef8;
  padding: 0 1rem 1rem 20rem;
  margin-left: -20rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
section.hero > div:first-child p:nth-of-type(1) {
  font-size: 1.25rem;
  font-weight: 100;
  line-height: 1.65rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.368627451);
  margin-bottom: 1.3rem;
}
section.hero > div:first-child p:nth-of-type(2) {
  display: none;
}
section.hero > div:first-child button, section.hero > div:first-child a {
  font-weight: 600;
}
section.hero div:has(button) {
  margin-bottom: 1rem;
}
section.hero a.arrow {
  display: block;
  text-align: center;
  margin-top: auto;
  width: 100%;
}
section.hero a.arrow > svg {
  display: inline-block;
}

section#que-es p > a {
  text-decoration: underline;
}

section#contacto {
  background: #F1F1F1;
}
section#contacto form {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
  padding: 3rem;
}
section#contacto form div:has(> input, > select, > textarea) {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: white;
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209, 213, 219, var(--tw-border-opacity, 1));
}
section#contacto form div:has(> input, > select, > textarea) input, section#contacto form div:has(> input, > select, > textarea) select, section#contacto form div:has(> input, > select, > textarea) textarea {
  border: none;
  box-shadow: none;
  border-radius: 0;
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  padding-left: 1rem;
  padding-right: 1rem;
}
section#contacto form div:has(> input, > select, > textarea) span {
  color: gray;
  margin-left: 1rem;
}
section#contacto form div:has(> textarea) {
  border-radius: 1.25rem;
  align-items: flex-start;
}
section#contacto form div:has(> textarea) span {
  margin-top: 0.8rem;
}
section#contacto form > div:nth-child(n+2) {
  margin-top: 1rem;
}
section#contacto form input, section#contacto form select {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
section#contacto form select {
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
  background: white;
  width: 100%;
  white-space: nowrap;
}
section#contacto form select::picker-icon {
  color: #564950;
}
section#contacto form select.empty-selected {
  color: #9da3b0;
}

section#testimonios .cards > div {
  display: flex;
  flex-direction: column;
}
section#testimonios .cards > div p + div {
  border-top-width: 1px;
}
section#testimonios .cards > div > div:last-child {
  min-height: 105px;
}
section#testimonios .cards > div img {
  overflow: hidden;
  width: 86px;
  height: 86px;
  border: solid 1px rgba(0, 0, 0, 0.15);
}
section#testimonios .logos > img {
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.accordion .accordion-trigger > div > svg {
  transform: rotate(90deg);
  transition: transform 0.1s ease-out;
}
.accordion .accordion-trigger:has(+ .accordion-content.active) > div > svg {
  transform: rotate(0deg);
}

p {
  font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6, button, .navbar-item {
  font-family: "Poppins", sans-serif;
}

@media (min-width: 768px) {
  header img {
    width: 180px;
  }
  section.hero::before {
    background-size: 180%;
    background-position: 38% 31%;
  }
}
@media screen and (min-width: 768px) and (orientation: landscape) {
  section.hero::before {
    background-size: 120%;
  }
}
@media (min-width: 768px) {
  section.hero > div:first-child {
    margin-top: auto;
  }
  section.hero > div:first-child h1 {
    font-size: 2.75rem;
    margin-bottom: 1.3rem;
    line-height: 1.625;
  }
  section.hero > div:first-child h1 > span:last-child {
    top: 2rem;
    transform: scaleY(0.4);
    padding-right: 1.5rem;
  }
  section.hero > div:first-child h1 br {
    display: none;
  }
  section.hero > div:first-child p:nth-of-type(1) {
    font-size: 1.25rem;
    margin-bottom: 1.3rem;
  }
  section.hero div > button {
    flex: 1;
  }
  section.hero a.arrow {
    margin-top: 2rem;
  }
  #contacto div.flex > div:first-child {
    align-content: center;
  }
}
@media (min-width: 1024px) {
  section.hero div > button {
    flex: initial;
  }
}
@media (min-width: 1280px) {
  section.hero::before {
    background-size: 125%;
    background-position: 68% 29%;
  }
  section.hero > div:first-child h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
  section.hero > div:first-child h1 > span:last-child {
    top: 2.5rem;
  }
  section.hero > div:first-child p:nth-of-type(1) {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .lg-width-50 {
    margin-left: auto;
    margin-right: auto;
    width: 50rem;
  }
}/*# sourceMappingURL=styles.css.map */