:root {
  --navy: #050457;
  --deep-blue: #07068a;
  --blue: #1111a8;
  --soft-blue: #d9eef7;
  --gold: #c99b3b;
  --soft-gold: #f0d99b;
  --green: #18a558;
  --green-dark: #0f7b40;
  --white: #ffffff;
  --paper: #f7fbff;
  --muted: #d7e6ef;
  --ink: #081625;
  --line: rgba(201, 155, 59, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34rem),
    linear-gradient(135deg, #03022f 0%, var(--navy) 32%, var(--deep-blue) 66%, #1210a0 100%);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.58;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  backdrop-filter: blur(18px);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  width: clamp(142px, 18vw, 226px);
}

.site-header__brand img {
  width: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  border-color: var(--line);
  color: var(--soft-gold);
}

.site-nav .site-nav__cta {
  border-color: rgba(24, 165, 88, 0.72);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  box-shadow: 0 14px 36px rgba(24, 165, 88, 0.2);
}

.site-nav .site-nav__cta:hover,
.site-nav .site-nav__cta:focus {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.page-shell {
  overflow: hidden;
}

.hero,
.positioning,
.split-section,
.about,
.methods,
.media-section,
.gallery,
.testimonials,
.final-offer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 82px);
  padding: 44px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: block;
  color: var(--soft-gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-top: 18px;
  font-size: clamp(2.15rem, 4.5vw, 4.42rem);
  line-height: 1.04;
}

.hero__lead {
  max-width: 760px;
  margin: 26px 0 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary,
.button-secondary,
.lead-form button,
.lead-form__submit,
.whatsapp-button,
.payment-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  padding: 16px 22px;
}

.button-primary {
  appearance: none;
}

.button-primary,
.lead-form button,
.lead-form__submit,
.whatsapp-button,
.payment-button {
  background: linear-gradient(135deg, var(--gold), var(--soft-gold));
  color: var(--ink);
}

.payment-button {
  width: fit-content;
  margin-top: 18px;
  background: linear-gradient(135deg, #00a651, #1fd06f);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(0, 166, 81, 0.28);
}

.lead-form button,
.lead-form__submit {
  background: linear-gradient(135deg, #ffd24a, #f2b705);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(242, 183, 5, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero__media {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 20px;
}

.hero__media img,
.about__image img {
  width: 100%;
  max-height: 74vh;
  object-fit: cover;
  object-position: center 8%;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(3, 20, 38, 0.42);
  transform: scale(1.035);
  transform-origin: center top;
  transition:
    transform 520ms ease,
    box-shadow 520ms ease,
    border-color 520ms ease;
}

.hero__media img {
  background: var(--white);
}

.hero__media img:hover,
.hero__media img:focus,
.about__image img:hover,
.about__image img:focus {
  border-color: rgba(240, 217, 155, 0.72);
  box-shadow: 0 34px 96px rgba(3, 20, 38, 0.54);
  transform: scale(1.08) translateY(-8px);
}

.hero__media blockquote {
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: #f7eed8;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 700;
}

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

.positioning article,
.positioning-card,
.feature-list article,
.method-grid article,
.media-grid a,
.testimonials__grid article {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(217, 238, 247, 0.05)),
    rgba(5, 4, 87, 0.58);
}

.positioning article,
.positioning-card {
  min-height: 260px;
  padding: 24px;
}

.positioning article > span,
.positioning-card > .positioning__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  color: var(--soft-gold);
  font-weight: 900;
}

.positioning-card {
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.positioning-card--raiox {
  padding-bottom: 72px;
  border-color: var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(217, 238, 247, 0.05)),
    rgba(5, 4, 87, 0.58);
  box-shadow: 0 18px 48px rgba(3, 2, 47, 0.18);
}

.positioning-card--raiox::before {
  content: "";
  position: absolute;
  inset: -42%;
  background: linear-gradient(115deg, transparent 28%, rgba(240, 217, 155, 0.22) 46%, transparent 64%);
  transform: translateX(-58%) rotate(8deg);
  transition: transform 620ms ease;
  pointer-events: none;
}

.positioning-card--raiox:hover,
.positioning-card--raiox:focus {
  border-color: rgba(240, 217, 155, 0.84);
  box-shadow:
    0 22px 62px rgba(3, 2, 47, 0.36),
    0 0 0 1px rgba(240, 217, 155, 0.28);
  filter: saturate(1.08);
  transform: translateY(-10px) scale(1.025);
}

.positioning-card--raiox:hover::before,
.positioning-card--raiox:focus::before {
  transform: translateX(62%) rotate(8deg);
}

.positioning-card--raiox h2,
.positioning-card--raiox p,
.positioning-card--raiox .positioning__number,
.positioning-card--raiox .raiox-pulse {
  position: relative;
  z-index: 1;
}

.positioning .positioning-card--raiox h2,
.positioning .positioning-card--raiox p {
  color: var(--soft-gold);
  text-shadow: 0 2px 14px rgba(3, 2, 47, 0.34);
}

.positioning-card--raiox .positioning__number {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.raiox-pulse {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #e3001b;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(227, 0, 27, 0.36);
  animation: raioxPulse 1s ease-in-out infinite;
}

.positioning h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.3vw, 1.32rem);
  line-height: 1.16;
}

.positioning p,
.feature-list p,
.about__copy p,
.testimonials__grid p,
.final-offer__copy p,
.media-section h2 + p {
  color: var(--muted);
}

@keyframes raioxPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.58;
    transform: scale(1.07);
  }
}

.split-section,
.about,
.methods,
.media-section,
.gallery,
.testimonials,
.final-offer {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.split-section,
.about,
.media-section,
.final-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.section-heading h2,
.about h2,
.methods h2,
.media-section h2,
.gallery h2,
.testimonials h2,
.final-offer h2 {
  margin-top: 14px;
  font-size: clamp(1.72rem, 3.3vw, 3.12rem);
  line-height: 1.09;
}

.feature-list,
.method-grid,
.media-grid,
.testimonials__grid {
  display: grid;
  gap: 16px;
}

.feature-list article {
  padding: 22px;
}

.feature-list h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
  line-height: 1.15;
}

.feature-list p {
  margin: 0;
}

.about {
  align-items: center;
}

.about__copy p {
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.methods__heading {
  max-width: 980px;
}

.methods__note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--soft-gold);
  font-weight: 800;
}

.methods__heading--presencial {
  margin-top: 58px;
}

.method-grid--online {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.method-grid--presencial {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-grid article {
  position: relative;
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  text-align: left;
}

.method-grid article::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -18px;
  z-index: 2;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--soft-gold), transparent);
}

.method-grid article:nth-child(3)::after,
.method-grid article:last-child::after {
  display: none;
}

.method-grid--online article:nth-child(3)::after {
  display: block;
}

.method-grid--online article:nth-child(4)::after,
.method-grid--presencial article::after {
  display: none;
}

.method-grid span {
  color: var(--soft-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-grid h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.15;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.method-call-link {
  width: fit-content;
  margin-top: 6px;
  padding: 9px 12px;
  border: 1px solid rgba(240, 217, 155, 0.52);
  background: rgba(240, 217, 155, 0.09);
  color: var(--soft-gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.method-grid__featured {
  grid-column: span 2;
}

.media-section {
  align-items: center;
}

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

.media-grid a {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition:
    border-color 240ms ease,
    color 240ms ease,
    transform 240ms ease;
}

.media-grid svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.media-grid a:nth-child(2) svg path:first-child,
.media-grid a:nth-child(3) svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.media-grid a:nth-child(2) svg path:last-child,
.media-grid a:nth-child(3) svg path:last-child {
  fill: var(--navy);
  stroke: none;
}

.media-grid a:hover,
.media-grid a:focus {
  color: var(--soft-gold);
  transform: translateY(-3px);
}

.gallery__header,
.testimonials__header {
  max-width: 920px;
  margin-bottom: 32px;
}

.carousel {
  width: 100%;
  overflow: hidden;
  overflow-y: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.carousel__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-right: 18px;
  animation: carousel-marquee 58s linear infinite;
}

.carousel img {
  width: clamp(220px, 26vw, 330px);
  height: clamp(290px, 38vw, 430px);
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.carousel:hover .carousel__track {
  animation-play-state: paused;
}

@keyframes carousel-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.testimonials__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonials__grid article {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
}

.testimonials__grid p {
  margin: 0;
  color: var(--paper);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  font-weight: 500;
}

.testimonials__grid strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.testimonials__grid span {
  display: block;
  color: var(--soft-gold);
  font-size: 0.86rem;
  font-weight: 800;
}

.final-offer {
  padding-bottom: 96px;
  align-items: center;
}

.final-offer__text {
  display: grid;
  gap: 8px;
  max-width: 640px;
}

.offer-details {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 24px;
}

.offer-details span,
.offer-details strong {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft-gold);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(3, 20, 38, 0.28);
  backdrop-filter: blur(18px);
}

.lead-form__header {
  display: grid;
  gap: 6px;
  padding-bottom: 4px;
}

.lead-form__header span {
  color: var(--white);
  font-size: clamp(1.18rem, 1.8vw, 1.46rem);
  font-weight: 900;
  line-height: 1.12;
}

.lead-form__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--soft-gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  padding: 12px 14px;
  outline: none;
}

.lead-form select {
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 25px,
    calc(100% - 14px) 25px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(210, 168, 82, 0.2);
}

.phone-field {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
}

.phone-field__prefix {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 0;
  background: rgba(217, 238, 247, 0.2);
  color: var(--white);
  font-weight: 900;
}

.phone-field input {
  border-left-color: rgba(8, 22, 37, 0.12);
}

.site-footer {
  background: #02020a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 42px 16px 36px;
}

.site-footer__inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.2fr;
  align-items: start;
  gap: clamp(28px, 6vw, 86px);
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
  color: var(--soft-gold);
  transform: translateX(3px);
}

.site-footer__brand {
  display: grid;
  justify-self: end;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.site-footer__brand img {
  width: min(190px, 48vw);
  object-fit: contain;
}

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

.site-footer__social a {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus {
  color: var(--soft-gold);
  transform: translateY(-2px);
}

.site-footer__social svg,
.floating-whatsapp svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__copy {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #19c85a, #0fa944);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.schedule-modal[hidden] {
  display: none;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.schedule-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 2, 47, 0.78);
  backdrop-filter: blur(10px);
}

.schedule-modal__panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(217, 238, 247, 0.05)),
    rgba(5, 4, 87, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.schedule-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
}

.schedule-form {
  display: grid;
  gap: 14px;
  padding: 28px 18px 18px;
}

.schedule-form label {
  display: grid;
  gap: 8px;
  color: var(--soft-gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.schedule-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  padding: 12px 14px;
  outline: none;
}

.schedule-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(210, 168, 82, 0.2);
}

.schedule-form .lead-form__submit {
  width: 100%;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.thanks-card {
  width: min(720px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  background: rgba(7, 29, 53, 0.86);
  text-align: center;
}

.thanks-logo {
  width: min(250px, 72vw);
  margin: 0 auto 34px;
}

.thanks-card h1 {
  font-size: clamp(2.1rem, 5.5vw, 4rem);
}

.thanks-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.whatsapp-button {
  margin-top: 22px;
}

.whatsapp-button.disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

.thanks-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  body {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34rem),
      linear-gradient(135deg, #03022f 0%, var(--navy) 32%, var(--deep-blue) 66%, #1210a0 100%);
    color: var(--white);
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    background: rgba(5, 4, 87, 0.74);
    border-bottom: 1px solid var(--line);
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .split-section,
  .about,
  .media-section,
  .final-offer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero__media img {
    max-height: none;
    aspect-ratio: 4 / 5;
  }

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

  .method-grid--online,
  .method-grid--presencial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-grid article::after {
    display: none;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .positioning article,
  .feature-list article,
  .method-grid article,
  .media-grid a,
  .testimonials__grid article,
  .lead-form,
  .thanks-card {
    border-color: var(--line);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(217, 238, 247, 0.05)),
      rgba(5, 4, 87, 0.58);
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--muted);
    font-size: 0.8rem;
    padding: 8px 10px;
  }

  .site-nav .site-nav__cta,
  .payment-button {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
  }

  .button-primary {
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(201, 155, 59, 0.24);
  }

  .lead-form button,
  .lead-form__submit {
    background: linear-gradient(135deg, var(--gold), #ffd24a 52%, var(--soft-gold));
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(201, 155, 59, 0.28);
  }

  .lead-form input,
  .lead-form select {
    background-color: #ffffff;
    color: var(--ink);
    -webkit-text-fill-color: var(--ink);
    color-scheme: light;
  }

  .phone-field__prefix {
    background: #ffffff;
    color: var(--ink);
  }

  .positioning,
  .method-grid,
  .media-grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .method-grid article::after {
    display: none;
  }

  .method-grid__featured {
    grid-column: auto;
  }

  .site-footer {
    padding: 34px 18px 32px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__copy {
    text-align: left;
  }

  .site-footer__brand {
    justify-self: start;
    justify-items: start;
    text-align: left;
  }

  .site-footer__social {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .positioning,
  .split-section,
  .about,
  .methods,
  .media-section,
  .gallery,
  .testimonials,
  .final-offer {
    width: min(100% - 24px, 1180px);
  }

  .site-header__brand {
    width: 150px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  h1 {
    font-size: clamp(1.9rem, 8vw, 2.42rem);
    line-height: 1.08;
  }

  .section-heading h2,
  .about h2,
  .methods h2,
  .media-section h2,
  .gallery h2,
  .testimonials h2,
  .final-offer h2 {
    font-size: clamp(1.62rem, 7.4vw, 2.24rem);
  }

  .hero__lead,
  .about__copy p,
  .final-offer__copy p {
    font-size: 1rem;
  }

  .button-primary,
  .button-secondary,
  .payment-button {
    width: 100%;
  }

  .positioning article {
    min-height: auto;
  }

  .carousel img {
    width: 238px;
    height: 318px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hero__media img,
  .about__image img {
    transform: none;
    transition: none;
  }

  .carousel__track {
    animation: none;
  }
}
