:root {
  --red: #d90416;
  --red-dark: #8d0008;
  --red-soft: #fff1f1;
  --yellow: #ffc400;
  --gold: #f2a900;
  --green: #19b85a;
  --ink: #151515;
  --muted: #606060;
  --line: #ececec;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(25, 25, 25, .1);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
}

a,
button {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

button {
  font: inherit;
}

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

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 78px;
  padding: 0 48px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 3px 24px rgba(0, 0, 0, .07);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 75px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -13px;
  left: 50%;
  height: 3px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
  transition: left .2s ease, right .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
  left: 0;
}

.header-cta,
.btn-main,
.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta,
.btn-main {
  color: #161616;
  background: var(--yellow);
  box-shadow: 0 9px 24px rgba(255, 196, 0, .28);
}

.header-cta {
  padding: 0 28px;
  font-size: 13px;
  white-space: nowrap;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  color: var(--white);
  cursor: pointer;
  background: var(--red);
  border: 0;
  border-radius: 10px;
  font-size: 24px;
  line-height: 1;
}

.hero {
  background: linear-gradient(180deg, #fff 0, #fff 74%, #f8f8f8 74%);
}

.slider {
  position: relative;
  height: min(620px, calc(100vh - 94px));
  min-height: 510px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--red-dark), var(--red));
}

.slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity .55s ease;
}

.slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 78% 38%, rgba(255, 255, 255, .28), transparent 29%),
    linear-gradient(90deg, rgba(92, 0, 0, .9) 0%, rgba(173, 0, 0, .54) 43%, rgba(210, 0, 0, .05) 100%);
}

.slide.is-active {
  pointer-events: auto;
  opacity: 1;
}

.slide-bg,
.slide picture,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-contained {
  display: grid;
  place-items: center;
  padding: 16px 0 86px;
}

.hero-contained::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .2), transparent 34%),
    linear-gradient(120deg, rgba(90, 0, 0, .52), rgba(210, 0, 0, .16));
}

.hero-contained picture {
  position: relative;
  z-index: 2;
  width: min(1404px, 100%);
  height: min(611px, calc(100% - 28px));
}

.hero-contained .slide-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, .26));
}

.hero-cta-only {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
}

.hero-seo-copy {
  position: absolute;
  top: 24px;
  left: max(24px, calc((100% - 1180px) / 2));
  z-index: 4;
  width: min(410px, calc(100% - 48px));
  padding: 18px 20px;
  color: var(--white);
  background: rgba(92, 0, 0, .72);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.hero-seo-copy p,
.hero-seo-copy h1,
.hero-seo-copy span {
  margin: 0;
}

.hero-seo-copy p {
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-seo-copy h1 {
  margin-top: 7px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-seo-copy span {
  display: block;
  margin-top: 9px;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.48;
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: max(5.5%, calc((100% - 1180px) / 2));
  z-index: 2;
  width: min(500px, 88%);
  color: var(--white);
  transform: translateY(-50%);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  font-weight: 900;
  line-height: .96;
  text-transform: uppercase;
  text-shadow: 0 12px 26px rgba(0, 0, 0, .3);
}

.hero-copy strong {
  color: var(--yellow);
}

.hero-copy p {
  max-width: 430px;
  margin: 0 0 30px;
  font-size: clamp(.98rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.62;
}

.btn-main {
  min-width: 230px;
  padding: 0 30px;
  font-size: 14px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
}

.slider-arrow.prev {
  left: 16px;
}

.slider-arrow.next {
  right: 16px;
}

.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.slider-dots button.active {
  background: var(--white);
}

.campaign-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 28px;
  padding: 24px;
  margin-top: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.campaign-panel > *,
.social-actions > *,
.steps > *,
.authority-grid > *,
.trust > *,
.faq-grid > *,
.footer-grid > * {
  min-width: 0;
}

.progress-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
  padding: 10px 8px;
}

.progress-card h2 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.progress-card h2 span,
.section-title span {
  color: var(--red);
}

.progress-card p {
  margin: 0 0 24px;
  color: #333;
  font-weight: 600;
}

.progress {
  position: relative;
  --progress-value: 0%;
  height: 22px;
  margin: 0 0 20px;
  overflow: visible;
  background: #eeeeee;
  border-radius: 999px;
}

.progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress-value);
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: inherit;
  transition: width .6s ease;
}

.progress b {
  position: absolute;
  top: 50%;
  left: min(var(--progress-value), calc(100% - 58px));
  padding: 11px 15px;
  color: #5f2200;
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
  transform: translateY(-50%);
}

.progress-info {
  display: block;
  gap: 12px;
  font-size: 14px;
  text-transform: uppercase;
}

.progress-info em {
  color: var(--gold);
  font-style: normal;
}

.social-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quick-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: .8rem 1.5rem;
  gap: 15px;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  background: var(--red);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

button.quick-card {
  color: var(--white);
}

.quick-card:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, .1);
  transform: translateY(-3px);
}

.quick-card svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.social-instagram {
  background: linear-gradient(45deg, rgb(240, 148, 51) 0%, rgb(230, 104, 60) 25%, rgb(220, 39, 67) 50%, rgb(204, 35, 102) 75%, rgb(188, 24, 136) 100%);
}

.social-whatsapp {
  background: rgb(37, 211, 102);
}

.social-share {
  background: rgb(227, 6, 19);
}

.quick-card strong {
  flex: 1 1 0%;
  min-height: 0;
  font-size: 1.1rem;
  line-height: 1.15;
  text-transform: none;
}

.quick-card span {
  min-width: 0;
  padding: .6rem 1rem;
  margin-top: 0;
  color: var(--red);
  background: var(--white);
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.social-instagram span {
  color: rgb(220, 39, 67);
}

.social-whatsapp span {
  color: rgb(37, 211, 102);
}

.social-share span {
  color: rgb(227, 6, 19);
}

.section {
  padding: 56px 0;
}

.section-title {
  position: relative;
  margin: 0 0 42px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section-title::after {
  display: block;
  width: 54px;
  height: 4px;
  margin: 11px auto 0;
  content: "";
  background: var(--yellow);
  border-radius: 999px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.authority {
  padding-top: 46px;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.authority-grid article {
  min-height: 178px;
  padding: 24px;
  background: #fff;
  border: 1px solid #ececec;
  border-top: 5px solid var(--red);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .06);
}

.authority-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.authority-grid p {
  margin: 0;
  color: #4f4f4f;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.6;
}

.authority-grid a,
.faq a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page {
  background: linear-gradient(180deg, #fff, #fafafa 42%, #fff);
}

.legal-main {
  padding: 64px 0 72px;
}

.legal-hero {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin-bottom: 34px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: #444;
  font-weight: 650;
  line-height: 1.65;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.legal-content section {
  padding: 26px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: #4d4d4d;
  font-weight: 600;
  line-height: 1.7;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  padding-left: 1.1rem;
  margin: 0;
}

.legal-content a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  color: var(--red);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  align-items: center;
  min-height: 112px;
}

.step::after {
  position: absolute;
  top: 54px;
  right: -24px;
  width: 40px;
  height: 1px;
  content: "";
  border-top: 2px dotted #bdbdbd;
}

.step:last-child::after {
  display: none;
}

.step b {
  position: absolute;
  top: 1px;
  left: 65px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #471600;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.step-icon {
  display: grid;
  grid-row: span 2;
  width: 86px;
  height: 86px;
  place-items: center;
  color: var(--white);
  background: radial-gradient(circle at 30% 24%, #ff3944, var(--red) 58%, #a9000b);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(217, 4, 22, .2);
  font-size: 36px;
}

.step h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  color: #444;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.prizes {
  padding: 42px 34px 38px;
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border: 1px solid #efefef;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8);
}

.dream-section {
  overflow: hidden;
}

.dream-panel {
  position: relative;
  display: grid;
  gap: 24px;
  min-height: 0;
  padding: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 196, 0, .18), transparent 34%),
    linear-gradient(135deg, #a7000a, #e50919 54%, #8d0008);
  border-radius: 18px;
}

.dream-image {
  display: grid;
  min-height: 390px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
}

.dream-image picture {
  width: 100%;
  max-height: 520px;
}

.dream-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, .28));
}

.dream-content {
  display: grid;
  gap: 18px;
  justify-items: center;
  color: var(--white);
  text-align: center;
}

.dream-content h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
}

.dream-content p {
  max-width: 620px;
  margin: 0;
  font-weight: 700;
  line-height: 1.55;
}

.dream-options {
  display: grid;
  width: min(820px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dream-options button {
  display: grid;
  min-height: 78px;
  place-items: center;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05);
  font-size: clamp(1.2rem, 2.3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.dream-options button:hover,
.dream-options button.active {
  color: #201800;
  background: var(--yellow);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .2);
  transform: translateY(-3px);
}

.prize-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.prize-card {
  min-height: 260px;
  padding: 18px 16px 22px;
  text-align: center;
  background: var(--white);
  border: 1px solid #f1f1f1;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .07);
}

.prize-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center;
  border-radius: 11px;
}

.prize-card h3 {
  margin: 18px 0 10px;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.prize-card p {
  display: inline-block;
  padding: 9px 14px;
  margin: 0;
  color: #1a1a1a;
  background: var(--yellow);
  border-radius: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-red {
  width: max-content;
  min-width: 230px;
  padding: 0 30px;
  margin: 30px auto 0;
  color: var(--white);
  background: linear-gradient(180deg, #f9101d, #b80008);
  border-radius: 999px;
  font-size: 13px;
}

.testimonials {
  display: grid;
  grid-template-columns: 50px repeat(3, 1fr) 50px;
  gap: 16px;
  align-items: center;
}

.round {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  background: var(--white);
  border: 1px solid #dddddd;
  border-radius: 50%;
  font-size: 31px;
}

.testimonial {
  min-height: 196px;
  padding: 24px;
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.avatar {
  display: grid;
  float: left;
  width: 58px;
  height: 58px;
  margin-right: 16px;
  place-items: center;
  color: var(--red);
  background: linear-gradient(145deg, #e8e8e8, #fff);
  border-radius: 50%;
  font-weight: 900;
}

.testimonial h3 {
  margin: 4px 0 2px;
  font-size: 15px;
}

.testimonial small {
  color: #555;
  font-weight: 700;
}

.testimonial p {
  clear: both;
  padding-top: 14px;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.testimonial span {
  color: var(--gold);
  letter-spacing: 2px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 18px;
  padding: 28px 24px;
  border-right: 1px solid #eeeeee;
}

.trust article:last-child {
  border-right: 0;
}

.trust i {
  display: grid;
  grid-row: span 2;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 50%;
  font-size: 32px;
  font-style: normal;
}

.trust strong {
  font-size: 14px;
  text-transform: uppercase;
}

.trust p {
  margin: 0;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 70px;
}

.faq details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
}

.faq summary {
  position: relative;
  padding: 20px 52px 20px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "⌄";
  font-size: 20px;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq p {
  padding: 0 24px 20px;
  margin: 0;
  color: #555;
  font-weight: 600;
  line-height: 1.55;
}

.footer {
  margin-top: 28px;
  padding: 48px 0 16px;
  color: var(--white);
  background: radial-gradient(circle at 25% 20%, #c7000f, transparent 34%), linear-gradient(145deg, #860000, #bf000c);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr 1.2fr 1fr;
  gap: 58px;
}

.footer img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .15));
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 15px;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0;
  color: var(--white);
  font-weight: 600;
  line-height: 1.85;
  opacity: .96;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
}

.phone {
  display: block;
  margin: 8px 0;
  color: var(--yellow);
  font-size: 24px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 44px);
  min-height: 54px;
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(180deg, #20c765, #109d47);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(16, 157, 71, .32);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-whatsapp svg {
  display: none;
}

.pix {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 8px;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.pix svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.copy {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: 13px;
  opacity: .85;
}

.copy a {
  display: inline;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translate(0) scale(1);
}

.fade-left {
  transform: translateX(-24px);
}

.fade-right {
  transform: translateX(24px);
}

.zoom-in {
  transform: scale(.95);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    gap: 20px;
    padding: 0 24px;
  }

  .main-nav {
    gap: 20px;
  }

  .campaign-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: auto;
    padding: 14px 20px;
    flex-wrap: wrap;
  }

  .brand img {
    width: 62px;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .main-nav {
    display: none;
    order: 4;
    width: 100%;
    margin: 0;
    padding: 18px 0 8px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a::after {
    bottom: -7px;
  }

  .header-cta {
    display: none !important;
  }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 14px !important;
    left: auto !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    max-width: 52px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }

  .floating-whatsapp svg {
    display: block !important;
    width: 27px;
    height: 27px;
  }

  .floating-whatsapp span {
    display: none !important;
  }

  .slider {
    height: 590px;
    min-height: 590px;
  }

  .slide-bg,
  .slide picture,
  .slide video {
    object-position: 62% center;
  }

  .hero-contained {
    padding: 18px 0 94px;
  }

  .hero-contained picture {
    width: min(100%, 988px);
    height: min(559px, calc(100% - 70px));
  }

  .hero-seo-copy {
    top: 16px;
    left: 16px;
    width: min(360px, calc(100% - 32px));
    padding: 14px 16px;
  }

  .hero-seo-copy span {
    font-size: .8rem;
  }

  .hero-contained .slide-bg {
    object-position: center;
  }

  .hero-copy {
    top: auto;
    bottom: 58px;
    transform: none;
  }

  .hero-copy h1,
  .hero-copy h2 {
    max-width: 430px;
  }

  .social-actions,
  .steps,
  .authority-grid,
  .prize-grid,
  .testimonials,
  .trust,
  .footer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .step::after,
  .round {
    display: none;
  }

  .trust article {
    border-right: 0;
    border-bottom: 1px solid #eeeeee;
  }

  .trust article:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    gap: 28px;
  }

  .copy {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .fade-left,
  .fade-right {
    transform: translateY(30px);
  }

  .slider {
    height: 620px;
    min-height: 620px;
  }

  .slide::before {
    background:
      linear-gradient(180deg, rgba(120, 0, 0, .25) 0%, rgba(120, 0, 0, .65) 40%, rgba(120, 0, 0, .95) 100%),
      radial-gradient(circle at 74% 28%, rgba(255, 255, 255, .22), transparent 28%);
  }

  .slide-bg,
  .slide picture,
  .slide video {
    height: 63%;
    object-position: 62% top;
  }

  .hero-contained picture {
    height: min(559px, calc(100% - 70px));
  }

  .hero-seo-copy {
    top: 14px;
    width: calc(100% - 32px);
    padding: 12px 14px;
  }

  .hero-seo-copy h1 {
    font-size: 1.32rem;
  }

  .hero-seo-copy span {
    display: none;
  }

  .hero-contained .slide-bg {
    height: 100%;
    object-position: center;
  }

  .hero-copy {
    right: 6%;
    bottom: 54px;
    left: 6%;
    width: auto;
  }

  .hero-copy h1,
  .hero-copy h2 {
    margin-bottom: 16px;
    font-size: 2rem;
  }

  .hero-copy p {
    margin-bottom: 22px;
    font-size: .94rem;
  }

  .btn-main {
    width: 100%;
  }

  .slider-arrow {
    top: 38%;
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .campaign-panel {
    width: min(92%, 420px);
    padding: 18px;
    margin-top: 22px;
  }

  .progress-info {
    font-size: 12px;
  }

  .section {
    padding: 44px 0;
  }

  .authority {
    padding-top: 36px;
  }

  .prizes {
    width: min(92%, 420px);
    padding: 34px 18px;
  }

  .dream-panel {
    min-height: auto;
    padding: 18px;
  }

  .dream-image {
    min-height: 280px;
  }

  .dream-image picture,
  .dream-image img {
    max-height: 330px;
  }

  .dream-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step {
    grid-template-columns: 72px 1fr;
    gap: 6px 14px;
  }

  .step-icon {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }

  .step b {
    left: 50px;
  }

  .testimonial {
    padding: 20px;
  }

  .phone {
    font-size: 21px;
  }
}
