@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #100e0e;
  background: #f3f1ef;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
p,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.no-scroll {
  overflow: hidden;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -60px;
  z-index: 1000;
  background: #7b0000;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0.5rem;
}

.is-deferred {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.will-reveal.is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .will-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  background: #f2f2f1;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #413f3e;
}

html {
  overflow-x: clip;
}

body {
  max-width: 100%;
  overflow-x: clip;
}

.accent {
  color: #7b0000;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #94f000;
  color: #100e0e;
  font-family: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.885vw, 1.0625rem);
  letter-spacing: -0.3px;
  line-height: 1.55;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 16px 32px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(127, 209, 17, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-cta:focus-visible {
  outline: 3px solid #7b0000;
  outline-offset: 2px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(127, 209, 17, 0.5);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta .arrow {
  font-size: 1.1em;
  line-height: 1;
}

.pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  background: #ddeab1;
  border: 1px solid #667308;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.833vw, 1rem);
  line-height: 1.1;
  color: #7b0000;
  text-transform: uppercase;
}

.pill-outline--sm {
  background: #fdf0d5;
  border-color: #898952;
  padding: 6.5px 15px;
  font-weight: 600;
  font-size: clamp(0.6875rem, 0.625vw, 0.75rem);
  letter-spacing: 1.5px;
}

.pill-outline--wide {
  border-color: #898952;
  padding: 6.5px 15px;
  width: min(520px, 100%);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1.042vw, 1.25rem);
  letter-spacing: 1.5px;
}

.pill-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  background: #ddeab1;
  border: 1px solid #c6c1b9;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.833vw, 1rem);
  letter-spacing: 1px;
  line-height: 1.1;
  color: #7b0000;
  text-transform: uppercase;
}

.carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  outline: none;
}

.carousel__viewport {
  width: min(422px, 100%);
  overflow: hidden;
  border-radius: 14px;
}

.carousel__track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  place-items: center;
  aspect-ratio: 422/454;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 14px;
}

.carousel__arrow {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #413f3e;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.carousel__arrow:focus-visible {
  outline: 3px solid #7b0000;
  outline-offset: 2px;
}

.carousel__arrow:hover {
  color: #7b0000;
}

.carousel__arrow--prev {
  left: 0;
}

.carousel__arrow--next {
  right: 0;
}

@media (max-width: 767.98px) {
  .carousel__arrow {
    display: none;
  }
}
.carousel__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(65, 63, 62, 0.25);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s ease;
}

.carousel__dot.is-active {
  background: #413f3e;
}

[data-reveal] {
  opacity: 1;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 45.26vw;
  background: #f2f2f1;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(242, 242, 241, 0) 36.198%, #f2f2f1 74.531%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 13px;
  width: min(75%, 100% - 40px);
  max-width: 1440px;
  margin-inline: auto;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 31px;
  width: 30.2%;
  min-width: 320px;
}

.hero__logo {
  display: block;
  width: 100%;
  max-width: 290px;
}

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

.hero__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.hero__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.hero__when {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.hero__title {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  line-height: 1;
  color: #413f3e;
}

.hero__subtitle {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.1;
  color: #413f3e;
}

.hero__subtitle p + p {
  margin-top: 1.1em;
}

.hero__subtitle strong,
.hero__subtitle b {
  font-weight: 700;
}

.hero__subtitle em {
  font-style: italic;
  font-weight: 700;
}

.hero__date {
  font-size: clamp(0.9375rem, 1.042vw, 1.25rem);
  line-height: 1.1;
  color: #7b0000;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border: 1px solid #7b0000;
  border-radius: 999px;
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.1;
  color: #413f3e;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background-image: linear-gradient(to right, #7b0000 45.232%, #e07a5f 100%);
  color: #ddeab1;
  font-family: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.042vw, 1.25rem);
  letter-spacing: 0.3px;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.hero__cta:focus-visible {
  outline: 3px solid #ddeab1;
  outline-offset: 2px;
}

.hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.hero__cta:active {
  transform: translateY(0);
}

.hero__scarcity {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  margin-top: 10px;
}

.hero__bar {
  width: 100%;
  height: 7px;
  background: #c6c1b9;
  border-radius: 999px;
  overflow: hidden;
}

.hero__bar span {
  display: block;
  height: 100%;
  background-image: linear-gradient(to right, #7b0000 45.232%, #e07a5f 100%);
  border-radius: inherit;
}

.hero__seats, .hero__assurance {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #7b0000;
}

.hero__seats {
  font-weight: 600;
}

.hero__assurance {
  color: #262525;
}

.hero__assurance strong {
  font-weight: 700;
}

.hero__warn, .hero__tick {
  margin-right: 2px;
}

.hero__warn {
  color: #7b0000;
}

.hero__tick {
  color: #100e0e;
}

.hero__seal {
  display: block;
  flex-shrink: 0;
  width: clamp(120px, 12.96vw, 249px);
  align-self: flex-start;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.hero__seal:focus-visible {
  outline: 3px solid #7b0000;
  outline-offset: 2px;
}

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

.hero__seal:hover {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.hero__seal:active {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero__seal {
    transition: none;
  }
  .hero__seal:hover {
    transform: none;
  }
}
@media (max-width: 767.98px) {
  .hero {
    min-height: 0;
    padding-block: 40px 28px;
  }
  .hero__bg {
    display: none;
  }
  .hero__inner {
    display: block;
    padding-block: 0;
    width: calc(100% - 40px);
  }
  .hero__content {
    width: 100%;
    min-width: 0;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .hero__logo {
    max-width: 171px;
  }
  .hero__head, .hero__when {
    align-items: center;
  }
  .hero__seal {
    position: absolute;
    top: 3px;
    left: -16px;
    width: 125px;
    z-index: 3;
  }
}
.hero__photo-mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .hero__photo-mobile {
    display: block;
  }
  .hero__photo-mobile img {
    width: 100%;
    height: 274px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.ticker {
  background: #ddeab1;
  color: #7b0000;
  overflow: hidden;
  padding-block: 17px;
}

.ticker__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
  }
}
.ticker__group {
  flex-shrink: 0;
  padding-right: 1ch;
  font-family: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.3px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__group b {
  font-weight: 700;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.problema {
  padding-block: clamp(2.5rem, 4.17vw, 5rem);
}

.problema__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: min(75%, 100% - 40px);
  max-width: 1440px;
  margin-inline: auto;
}

.problema__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problema__title {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  line-height: 1;
  color: #413f3e;
}

.problema__text {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.1;
  color: #413f3e;
}

.problema__text p + p {
  margin-top: 1.1em;
}

.problema__text strong,
.problema__text b {
  font-weight: 700;
}

.problema__text em {
  font-style: italic;
  font-weight: 700;
}

.problema__media {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 30.4%;
}

.problema__media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767.98px) {
  .problema__inner {
    flex-direction: column;
    gap: 1.5rem;
    width: calc(100% - 40px);
  }
  .problema__content {
    text-align: center;
    width: 100%;
  }
  .problema__media {
    flex-direction: row;
    width: 100%;
    gap: 0.5rem;
  }
  .problema__media picture {
    flex: 1 1 0;
    min-width: 0;
  }
}
.comprender {
  padding-block: clamp(2.5rem, 4.17vw, 5rem);
  background-image: linear-gradient(107.36deg, #ddeab1 9.7859%, #fdf0d5 55.36%);
}

.comprender__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: min(75%, 100% - 40px);
  max-width: 1440px;
  margin-inline: auto;
}

.comprender__media {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 37.5%;
}

.comprender__media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.comprender__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.comprender__intro {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.1;
  color: #413f3e;
}

.comprender__intro p + p {
  margin-top: 1.1em;
}

.comprender__intro strong,
.comprender__intro b {
  font-weight: 700;
}

.comprender__intro em {
  font-style: italic;
  font-weight: 700;
}

.comprender__intro .accent {
  color: #7b0000;
}

.comprender__title {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  line-height: 1;
  color: #413f3e;
}

.comprender__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comprender__list li {
  padding: 4px 16px;
  background: rgba(242, 242, 241, 0.5);
  border: 1px solid #c6c1b9;
  border-radius: 999px;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.1;
  color: #413f3e;
}

.comprender__title + .comprender__list {
  margin-top: -1rem;
}

.comprender__outro {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.1;
  color: #413f3e;
}

.comprender__outro p + p {
  margin-top: 1.1em;
}

.comprender__outro strong,
.comprender__outro b {
  font-weight: 700;
}

.comprender__outro em {
  font-style: italic;
  font-weight: 700;
}

.comprender__no, .comprender__yes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.2;
  margin-top: 1.1em;
}

.comprender__no img, .comprender__yes img {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.comprender__no {
  color: #7b0000;
}

.comprender__yes {
  color: #667308;
  margin-top: 0;
}

@media (max-width: 767.98px) {
  .comprender__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    width: calc(100% - 40px);
    text-align: center;
  }
  .comprender__content {
    display: contents;
  }
  .comprender__intro {
    order: 1;
  }
  .comprender__title {
    order: 2;
  }
  .comprender__list {
    order: 3;
  }
  .comprender__media {
    order: 4;
    flex-direction: row;
    width: 100%;
    gap: 0.5rem;
  }
  .comprender__media picture {
    flex: 1 1 0;
    min-width: 0;
  }
  .comprender__outro {
    order: 5;
  }
  .comprender__title + .comprender__list {
    margin-top: 0;
  }
  .comprender__no, .comprender__yes {
    justify-content: center;
  }
}
.experiencia {
  position: relative;
  padding-block: clamp(2.5rem, 4.17vw, 5rem);
  background: #f2f2f1;
  overflow: hidden;
}

.experiencia__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experiencia__bg img {
  position: absolute;
  top: 0;
  right: 0;
  width: 72.5%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.experiencia__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #f2f2f1 28.229%, rgba(242, 242, 241, 0) 50%);
}

.experiencia__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: min(75%, 100% - 40px);
  max-width: 1440px;
  margin-inline: auto;
}

.experiencia__text {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.1;
  color: #413f3e;
}

.experiencia__text p + p {
  margin-top: 1.1em;
}

.experiencia__text strong,
.experiencia__text b {
  font-weight: 700;
}

.experiencia__text em {
  font-style: italic;
  font-weight: 700;
}

.experiencia__text {
  width: 41%;
}

.experiencia__facts {
  display: flex;
  gap: 1rem;
  width: 41%;
  padding-block: 8.9px;
}

.experiencia__fact {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 21px;
  background: #f2f2f1;
  border: 1px solid #c6c1b9;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  letter-spacing: -0.5px;
}

.experiencia__fact strong {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1;
  color: #667308;
}

.experiencia__fact span {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #9b9997;
}

.experiencia__cta {
  width: 41%;
}

@media (max-width: 767.98px) {
  .experiencia {
    padding-block: 40px;
  }
  .experiencia__bg {
    position: static;
    display: block;
    margin-bottom: 1.5rem;
  }
  .experiencia__bg img {
    position: static;
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .experiencia__bg::after {
    display: none;
  }
  .experiencia__inner {
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    width: calc(100% - 40px);
  }
  .experiencia__text, .experiencia__facts, .experiencia__cta {
    width: 100%;
  }
  .experiencia__fact {
    text-align: left;
  }
}
.aprenderas {
  padding-block: clamp(2.5rem, 4.17vw, 5rem);
  background-image: linear-gradient(110.53deg, #ddeab1 9.7859%, #fdf0d5 55.36%);
}

.aprenderas__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: min(58.33%, 100% - 40px);
  max-width: 1120px;
  margin-inline: auto;
}

.aprenderas__title {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  line-height: 1;
  color: #413f3e;
  text-align: center;
  letter-spacing: -0.8px;
}

.aprenderas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.aprenderas__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  min-height: 220px;
  padding: 21px 17px;
  background: rgba(243, 243, 243, 0.5);
  border: 1px solid #c6c1b9;
  border-radius: 24px;
  overflow: hidden;
}

.aprenderas__card h3 {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  letter-spacing: -0.15px;
  line-height: 1;
  color: #100e0e;
}

.aprenderas__card p {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.9375rem, 1.042vw, 1.25rem);
  line-height: 1;
  color: #413f3e;
}

.aprenderas__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #ddeab1;
  border-radius: 10px;
}

.aprenderas__icon::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #667308;
  -webkit-mask: var(--icon-check) center/contain no-repeat;
  mask: var(--icon-check) center/contain no-repeat;
}

.aprenderas__num {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.042vw, 1.25rem);
  letter-spacing: 1.344px;
  line-height: 0.84;
  color: #7b0000;
}

@media (max-width: 767.98px) {
  .aprenderas__inner {
    width: 100%;
    gap: 1.5rem;
    padding-inline: 20px;
  }
  .aprenderas__grid {
    display: flex;
    grid-template-columns: none;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .aprenderas__grid::-webkit-scrollbar {
    display: none;
  }
  .aprenderas__card {
    flex: 0 0 auto;
    width: 201px;
    scroll-snap-align: start;
  }
}
:root {
  --icon-check: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 11l3 3L22 4'/><path d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/></svg>");
}

.parati {
  padding-block: clamp(2.5rem, 4.17vw, 5rem);
}

.parati__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: min(50%, 100% - 40px);
  max-width: 960px;
  margin-inline: auto;
}

.parati__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  padding: 33px 25px;
  background: #ffffff;
  border: 1px solid #c6c1b9;
  border-radius: 28px;
  overflow: hidden;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.1;
  color: #413f3e;
}

.parati__card p + p {
  margin-top: 1.1em;
}

.parati__card strong,
.parati__card b {
  font-weight: 700;
}

.parati__card em {
  font-style: italic;
  font-weight: 700;
}

.parati__card::before {
  content: "";
  position: absolute;
  inset: -50% -20% 37% 21%;
  background: radial-gradient(ellipse at center, rgba(253, 240, 213, 0.8) 0%, rgba(253, 240, 213, 0) 60%);
  pointer-events: none;
}

.parati__card > * {
  position: relative;
}

.parati__card--center {
  align-items: center;
  text-align: center;
}

.parati__title {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  line-height: 1;
  color: #413f3e;
  letter-spacing: -1px;
}

.parati__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.parati__list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.15;
  color: #100e0e;
}

.parati__list li::before {
  content: "→";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: #ddeab1;
  border: 1px solid #898952;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  color: #7b0000;
}

@media (max-width: 767.98px) {
  .parati__inner {
    width: calc(100% - 40px);
    gap: 1.5rem;
  }
  .parati__card {
    padding: 24px 20px;
  }
}
.proof {
  padding-block: clamp(2.5rem, 4.17vw, 5rem);
}

.proof__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  width: min(58.33%, 100% - 40px);
  max-width: 1120px;
  margin-inline: auto;
}

.proof__title {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  line-height: 1;
  color: #413f3e;
  text-align: center;
  line-height: 1.1;
}

@media (max-width: 767.98px) {
  .proof__inner {
    width: calc(100% - 40px);
    gap: 1.25rem;
  }
}
.pricing {
  padding-block: clamp(2.5rem, 4.17vw, 5rem);
}

.pricing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: min(50%, 100% - 40px);
  max-width: 960px;
  margin-inline: auto;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 41px 33px;
  background-image: linear-gradient(136.52deg, #f2f2f1 0%, #ede9e2 100%);
  border: 1px solid #686564;
  border-radius: 28px;
  backdrop-filter: blur(12px);
}

.pricing__card--vip {
  background-image: linear-gradient(138.01deg, #fdf0d5 0%, #f2f2f1 100%);
  border-color: #e07a5f;
  box-shadow: 0 12px 16px rgba(255, 162, 55, 0.25);
}

.pricing__best {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5.5px 16px;
  background-image: linear-gradient(138.28deg, #e07a5f 0%, #7b0000 100%);
  border-radius: 999px;
  box-shadow: 0 8px 10px rgba(255, 162, 55, 0.4);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  line-height: 1.55;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;
}

.pricing__tag {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  line-height: 1.55;
  text-transform: uppercase;
  color: #262525;
}

.pricing__card--vip .pricing__tag {
  color: #7b0000;
}

.pricing__amount {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: -12px;
}

.pricing__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #413f3e;
}

.pricing__old {
  font-size: 0.875rem;
  line-height: 1.55;
}

.pricing__currency {
  font-family: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1;
}

.pricing__value {
  font-family: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 4.27vw, 5.125rem);
  letter-spacing: -3px;
  line-height: 1;
  background-image: linear-gradient(130.91deg, #100e0e 0%, #413f3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing__card--vip .pricing__value {
  background-image: linear-gradient(135.65deg, #7b0000 0%, #e07a5f 100%);
}

.pricing__h {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.375rem, 1.667vw, 2rem);
  line-height: 1;
  color: #413f3e;
  letter-spacing: -0.8px;
}

.pricing__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 auto;
}

.pricing__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  line-height: 1.1;
  color: #100e0e;
}

.pricing__list .is-off {
  color: #686564;
}

.pricing__list .is-off .pricing__check {
  background: #c6c1b9;
  border: 1px solid #686564;
  color: #686564;
}

.pricing__check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: #ddeab1;
  border-radius: 50%;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  color: #7b0000;
}

.pricing__upsell {
  padding: 12px 14px;
  background: rgba(253, 240, 213, 0.7);
  border: 1px solid rgba(224, 122, 95, 0.45);
  border-radius: 10px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #262525;
}

.pricing__cta {
  margin-top: 0.5rem;
  padding: 16px;
}

.pricing__note {
  margin-top: -12px;
  font-size: 0.75rem;
  line-height: 1.55;
  text-align: center;
  color: #413f3e;
}

.pricing__guarantee {
  width: 100%;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border: 1px solid #c6c1b9;
  border-radius: 28px;
  text-align: center;
}

.pricing__guarantee-title {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.375rem, 1.667vw, 2rem);
  line-height: 1;
  color: #413f3e;
  color: #7b0000;
}

.pricing__guarantee-title .pricing__check {
  display: inline-grid;
  vertical-align: -4px;
  margin-right: 6px;
}

.pricing__guarantee-text {
  margin-top: 0.75rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #413f3e;
}

.pricing__guarantee-text strong {
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .pricing__inner {
    width: calc(100% - 40px);
    gap: 1.5rem;
  }
  .pricing__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .pricing__card {
    padding: 32px 24px;
  }
}
.who {
  padding-block: clamp(2.5rem, 4.17vw, 5rem);
}

.who__card {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 2.5rem;
  border-radius: 28px;
  background-image: linear-gradient(158.38deg, #ddeab1 36.617%, #898952 144.2%);
  width: min(75%, 100% - 40px);
  max-width: 1440px;
  margin-inline: auto;
}

.who__photo {
  flex-shrink: 0;
  width: 24.9%;
}

.who__photo img {
  width: 100%;
  aspect-ratio: 358/520;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 23px;
}

.who__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.who__title {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  line-height: 1;
  color: #413f3e;
  color: #7b0000;
  letter-spacing: -1.5px;
}

.who__text {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.1;
  color: #413f3e;
}

.who__text p + p {
  margin-top: 1.1em;
}

.who__text strong,
.who__text b {
  font-weight: 700;
}

.who__text em {
  font-style: italic;
  font-weight: 700;
}

.who__text {
  color: #100e0e;
  margin-top: -2rem;
}

.who__text p {
  color: #100e0e;
}

@media (max-width: 767.98px) {
  .who__card {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 24px 20px;
    width: calc(100% - 40px);
  }
  .who__content {
    display: contents;
  }
  .who .pill-outline--sm {
    order: 1;
    align-self: center;
  }
  .who__photo {
    order: 2;
    width: 100%;
  }
  .who__title {
    order: 3;
  }
  .who__text {
    order: 4;
    margin-top: 0;
  }
}
.faq {
  padding-block: clamp(2.5rem, 4.17vw, 5rem);
}

.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: min(48.5%, 100% - 40px);
  max-width: 932px;
  margin-inline: auto;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.faq__item {
  border: 1px solid #c6c1b9;
  border-radius: 16px;
  background: transparent;
  overflow: hidden;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 16px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: #100e0e;
}

.faq__q:focus-visible {
  outline: 3px solid #7b0000;
  outline-offset: 2px;
}

.faq__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #ddeab1;
  border-radius: 16px;
  font-family: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1.042vw, 1.25rem);
  letter-spacing: -0.3px;
  line-height: 1;
  color: #100e0e;
}

.faq__item.is-open .faq__icon {
  font-size: 0;
}

.faq__item.is-open .faq__icon::before {
  content: "−";
  font-size: clamp(0.9375rem, 1.042vw, 1.25rem);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__a-inner {
  padding: 0 24px 16px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.9375rem, 1.042vw, 1.25rem);
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: #100e0e;
}

@media (max-width: 767.98px) {
  .faq__inner {
    width: calc(100% - 40px);
  }
  .faq__q {
    padding: 14px 18px;
  }
  .faq__a-inner {
    padding: 0 18px 14px;
  }
}
.site-footer {
  background: #7b0000;
  border-top: 1px solid #e7e9ea;
  color: #e7e9ea;
  padding: 2.5rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 97px;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.site-footer__rights {
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.site-footer__links {
  font-size: 10px;
  font-style: italic;
  line-height: 1.2;
  white-space: nowrap;
}

.site-footer__links a {
  text-decoration: none;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer__logos img {
  width: auto;
  height: 73px;
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 2rem 1.25rem;
  }
  .site-footer__inner {
    flex-direction: column;
    gap: 1.25rem;
  }
  .site-footer__legal {
    width: 100%;
  }
  .site-footer__rights {
    font-size: 1.125rem;
  }
  .site-footer__logos img {
    height: auto;
    max-width: 200px;
  }
}
.popup {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.popup[hidden] {
  display: none;
}

.popup.is-open {
  opacity: 1;
}

.popup__dialog {
  position: relative;
  width: min(460px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(146deg, #fdf0d5 0%, #ffffff 120%);
  border: 1px solid #ddeab1;
  border-radius: 28px;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.popup.is-open .popup__dialog {
  transform: none;
}

.popup__title {
  font-family: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  color: #7b0000;
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.popup__subtitle {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  color: #413f3e;
  margin-bottom: 1.5rem;
}

.popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(123, 0, 0, 0.08);
  color: #7b0000;
  border: none;
  border-radius: 999px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.popup__close:focus-visible {
  outline: 3px solid #7b0000;
  outline-offset: 2px;
}

.popup__close:hover {
  background: rgba(123, 0, 0, 0.16);
}

.popup__gate-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.popup__gate-yes, .popup__gate-no {
  width: 100%;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.popup__gate-yes:focus-visible, .popup__gate-no:focus-visible {
  outline: 3px solid #7b0000;
  outline-offset: 2px;
}

.popup__gate-yes {
  border: none;
  background: #7b0000;
  color: #ffffff;
}

.popup__gate-yes:hover {
  background: #5c0000;
  transform: translateY(-1px);
}

.popup__gate-no {
  border: 1px solid #c6c1b9;
  background: transparent;
  color: #686564;
}

.popup__gate-no:hover {
  background: rgba(123, 0, 0, 0.04);
  color: #100e0e;
}

.lead-form {
  display: grid;
  gap: 0.5rem;
}

.lead-form .field {
  display: grid;
  gap: 0.25rem;
}

.lead-form label {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #262525;
}

.lead-form input {
  width: 100%;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #100e0e;
  background: #ffffff;
  border: 1px solid #c6c1b9;
  border-radius: 10px;
  padding: 1rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lead-form input:focus-visible {
  outline: 3px solid #7b0000;
  outline-offset: 2px;
}

.lead-form input::-moz-placeholder {
  color: rgba(104, 101, 100, 0.8);
}

.lead-form input::placeholder {
  color: rgba(104, 101, 100, 0.8);
}

.lead-form input[aria-invalid=true] {
  border-color: #c0392b;
}

.lead-form .field--phone .phone-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.5rem;
}

.lead-form select[name=ddi] {
  width: 100%;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  background: #ffffff;
  border: 1px solid #c6c1b9;
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
}

.lead-form select[name=ddi]:focus-visible {
  outline: 3px solid #7b0000;
  outline-offset: 2px;
}

.lead-form .field__error {
  min-height: 1em;
  color: #c0392b;
  font-size: 0.75rem;
}

.lead-form button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #94f000;
  color: #100e0e;
  font-family: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  padding: 1.25rem 2rem;
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(127, 209, 17, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lead-form button[type=submit]:focus-visible {
  outline: 3px solid #7b0000;
  outline-offset: 2px;
}

.lead-form button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(127, 209, 17, 0.5);
}

.lead-form button[type=submit]:active {
  transform: translateY(0);
}

.lead-form button[type=submit] {
  border-radius: 10px;
  width: 100%;
  text-transform: uppercase;
  box-shadow: 0 14px 14px rgba(0, 0, 0, 0.18);
  margin-top: 0.5rem;
}

.lead-form .lead-form__note {
  font-size: 0.75rem;
  color: #686564;
  text-align: center;
  line-height: 1.4;
}

[data-phase][hidden] {
  display: none !important;
}

.launch-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0.5rem 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: #f2f2f1;
  border: 1px solid #c6c1b9;
}

.launch-head__badge {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #7b0000;
  color: #ffffff;
}

.launch-head__price {
  font-family: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #100e0e;
}

.launch-head__price b {
  color: #7b0000;
}

[data-phase=preventa].pricing__tag {
  background: #1f9d55;
  color: #ffffff;
}

.launch-head[data-phase=preventa] .launch-head__badge {
  background: #1f9d55;
}

:root[data-launch-phase=preventa] .pricing__card {
  border-color: #1f9d55;
}

:root[data-launch-phase=preventa] .launch-head__price b {
  color: #1f9d55;
}

[data-phase=oficial].pricing__tag {
  background: #7b0000;
  color: #ffffff;
}

.launch-head[data-phase=oficial] .launch-head__badge {
  background: #7b0000;
}

:root[data-launch-phase=oficial] .pricing__card {
  border-color: #898952;
}

:root[data-launch-phase=oficial] .launch-head__price b {
  color: #7b0000;
}

[data-phase=live].pricing__tag {
  background: #e08600;
  color: #ffffff;
}

.launch-head[data-phase=live] .launch-head__badge {
  background: #e08600;
}

:root[data-launch-phase=live] .pricing__card {
  border-color: #e08600;
}

:root[data-launch-phase=live] .launch-head__price b {
  color: #e08600;
}/*# sourceMappingURL=style.css.map */