:root{
  --primary: #f36b00;
  --light: #f4f4f6;
  --dark: black;
  --background: #e5e5e5;
  --radius-s : 10px;
  --radius-normal : 15px;
  --radius-l : 25px;
}

@font-face {
  font-family: 'sfProRegular';
  src: url("/fonts/SFPRODISPLAYREGULAR.OTF") format("opentype");
}

body{
  background-color: var(--background);
  color: var(--dark);
  font-family: 'sfProRegular', sans-serif;  
  margin: 0;
}

.wrapper-large{
  width: 100%;
}

.wrapper-medium{
  max-width: 1000px;
  margin: auto;
}

.button-primary{
  text-decoration: none;
  width: 100%;
  color: var(--light);
  background-color: var(--primary);
  border-radius: var(--radius-normal);
  padding: 10px 20px;
  text-align: center;
}

.primary{
  color: var(--primary);
}

.inverted {
  background-color: var(--dark);
  color: var(--light);
}

section{
  padding: 20px 0;
}

.cuanto-vale{
  text-align: center;
  font-size: x-large;
  font-weight: bold;
}

#vcl-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 750px;
  >div{
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  p{
    text-align: center;
    font-size: large;
  }
  #cuenta-regresiva-container{
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 3rem;
    >div{
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      >span:last-child{
        font-size: large;
      }
    }
  }
}

.center {
  text-align: center;
}

.incripciones-container{
  --fondo-botones: var(--primary);
  --texto-botones: var(--light);
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  &.inverted{
    --fondo-botones: var(--light);
    --texto-botones: var(--dark);
    background-color: var(--primary);
    .primary{
      color: var(--light);
    }
  }
  *{
    margin: 0;
  }
  div{
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  a{
    background-color: var(--fondo-botones);
    color: var(--texto-botones);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    font-size: x-large;
  }
  p:first-of-type{
    text-decoration:line-through;
    font-size: x-large;
    font-weight: bold;
  }
  p:last-child{
    font-size: large;
  }
}

#situaciones-container{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  .situacion{
    div{
      aspect-ratio: 1;
      height: 100px;
      margin: auto;
      display: flex;
      align-items: center;
      img{
        height: 70px;
      }
    }
    text-align: center;
  }
}

#testimonials-container{
  display: flex;
  flex-wrap: wrap;
  .testimonial{
    flex-basis: 400px;
    flex-grow: 1;
    border: 1px solid var(--dark);
    border-radius: var(--radius-normal);
    margin: 1rem;
    padding: 1rem;
    blockquote {
      margin: 0;
    }
    p, cite{
      text-align: center;
      margin: auto;
      font-weight: bold;
    }
    img{
      border-radius: 50%;
      height: 50px;
      width: 50px;
      object-fit:cover;
    }
  }
}

ul{
  list-style-type: none;
}

#bonos-container{
  li{
    margin: 1rem 0;
  }
}

#valor-total{
  color: var(--primary);
  text-decoration: line-through;
}

h2{
  text-align: center;
  font-size: 2.5rem;
  text-transform: uppercase;
}

/* .container {
  display: flex;
  justify-content: center;
}
   */
iframe {
  aspect-ratio: 16 / 9;
  width: 100% !important;
  max-width: 800px;
}