:root {
  --green-950: #001f12;
  --green-900: #00311d;
  --green-800: #004027;
  --gold: #d99a28;
  --gold-soft: #f0c15c;
  --white: #fffaf0;
  --muted: #d7ddcf;
  --pink: #e2458f;
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Pontano Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--green-950);
  color: var(--white);
  font-family: var(--font-body);
}

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

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

main {
  overflow: hidden;
}

.hero,
.s1,
.s2,
.s3,
.s4,
.s5,
.s6,
.s7 {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
}

.hero {
  display: flex;
  align-items: center;
  padding: 54px 7vw 124px;
  background:
    linear-gradient(90deg, rgba(0, 31, 18, 0.98) 0%, rgba(0, 31, 18, 0.9) 36%, rgba(0, 31, 18, 0.12) 67%),
    url("../img/fundoMain.png") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 154, 40, 0.16), transparent 18%),
    linear-gradient(180deg, transparent 68%, rgba(0, 31, 18, 0.9) 100%);
}

.hero__content,
.s1__content {
  width: min(100%, 620px);
}

.hero__content {
  width: min(100%, 980px);
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  margin-bottom: 42px;
}

.hero__logo {
  width: clamp(150px, 15vw, 245px);
  flex: 0 0 auto;
}

.hero__brand-copy {
  display: flex;
  min-height: clamp(48px, 4.8vw, 76px);
  flex-direction: column;
  justify-content: center;
}

.hero__brand-copy strong {
  color: var(--gold-soft);
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-weight: 600;
  line-height: 0.9;
}

.hero__brand-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.1vw, 1rem);
}

.hero h1,
.s1 h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(3.3rem, 4.65vw, 5.35rem);
}

.hero h1 span,
.s1 h2 span {
  color: var(--gold-soft);
}

.hero h1 .hero-title__line {
  display: block;
  color: var(--white);
  white-space: nowrap;
}

.hero h1 .hero-title__line--gold,
.hero h1 .hero-title__line span {
  color: var(--gold-soft);
}

.hero__text {
  max-width: 470px;
  margin: 28px 0 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, #f6c161, #c87d17);
  color: #102016;
}

.btn--primary img {
  width: 28px;
  height: 28px;
}

.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
}

.btn--outline::after {
  content: ">";
  font-size: 1.1rem;
}

.hero__features,
.s1__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(217, 154, 40, 0.5);
  border-radius: 16px;
  background: rgba(0, 31, 18, 0.58);
  backdrop-filter: blur(8px);
}

.hero__features {
  max-width: 620px;
}

.hero__features article,
.s1__cards article {
  display: grid;
  min-height: 122px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 14px 10px;
  text-align: center;
}

.hero__features article + article,
.s1__cards article + article {
  border-left: 1px solid rgba(217, 154, 40, 0.28);
}

.hero__features img,
.s1__cards img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.hero__features p,
.s1__cards p {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 96px;
  padding: 24px 7vw;
  border-top: 2px solid var(--gold);
  background: rgba(0, 41, 24, 0.94);
  color: var(--muted);
  text-align: center;
}

.section-footer strong {
  color: var(--gold-soft);
  font-family: var(--font-title);
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: none;
}

.hero__footer i {
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(217, 154, 40, 0.82);
}

.section-footer span {
  max-width: 620px;
  font-family: var(--font-title);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.35;
}

mark {
  background: transparent;
  color: var(--gold-soft);
}

.s1 {
  display: flex;
  align-items: center;
  padding: 88px 7vw;
  background: url("../img/fundoS1.png") center right / cover no-repeat;
}

.s1 h2 {
  max-width: 540px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
}

.s1 h2 span {
  display: block;
  font-style: italic;
  font-weight: 500;
}

.s1__content > p {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.55;
}

.s1__content > p strong {
  color: #ff4f97;
}

.s1__cards {
  max-width: 620px;
  margin-top: 34px;
}

.s2 {
  padding: 120px 5.5vw 88px;
  background: url("../img/fundoS2.png") center top / cover no-repeat;
}

.s2__intro {
  max-width: 650px;
  margin-bottom: 78px;
}

.s2 h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(3rem, 5.2vw, 5.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.s2 h2 span {
  display: block;
  color: var(--gold-soft);
}

.s2__intro p {
  max-width: 520px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.55;
}

.services {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.services__heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.services__heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services__heading h3 {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
  padding: 32px 0 4px;
}

.carousel__track {
  --visible-cards: 4;
  --carousel-gap: 22px;
  display: flex;
  gap: var(--carousel-gap);
  transform: translateX(0);
  transition: transform 420ms ease;
}

.service-card {
  position: relative;
  flex: 0 0 calc((100% - ((var(--visible-cards) - 1) * var(--carousel-gap))) / var(--visible-cards));
  min-height: 360px;
  overflow: hidden;
  padding: 0 0 30px;
  border: 1px solid rgba(217, 154, 40, 0.85);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 62, 39, 0.88), rgba(0, 34, 20, 0.95)),
    radial-gradient(circle at 50% 0%, rgba(217, 154, 40, 0.22), transparent 34%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  right: 34%;
  left: 34%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.service-card::before {
  top: 178px;
}

.service-card::after {
  bottom: 34px;
}

.service-card__photo {
  width: 100%;
  height: 168px;
  margin: 0 0 54px;
  border-bottom: 1px solid rgba(217, 154, 40, 0.72);
  object-fit: cover;
}

.service-card__icon {
  position: absolute;
  top: 136px;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--green-950);
  transform: translateX(-50%);
}

.service-card__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.service-card h4 {
  margin: 0 auto 14px;
  padding: 0 26px;
  color: var(--gold-soft);
  font-family: var(--font-title);
  font-size: clamp(1.18rem, 1.5vw, 1.58rem);
  font-weight: 700;
  line-height: 1.1;
}

.service-card p {
  margin: 0 auto;
  max-width: 260px;
  padding: 0 22px;
  color: var(--muted);
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.45;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(0, 31, 18, 0.82);
  color: var(--gold-soft);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.carousel__arrow:hover {
  background: rgba(217, 154, 40, 0.18);
  transform: translateY(-50%) scale(1.05);
}

.carousel__arrow--prev {
  left: -52px;
}

.carousel__arrow--next {
  right: -52px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.carousel__dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(215, 221, 207, 0.46);
  cursor: pointer;
}

.carousel__dots button.is-active {
  background: var(--gold);
}

.s3 {
  display: flex;
  align-items: center;
  padding: 96px 7vw;
  background: url("../img/fundoS3.png") calc(100% + 120px) center / cover no-repeat;
}

.s3__content {
  width: min(100%, 690px);
}

.s3__eyebrow {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 14px;
  width: min(100%, 460px);
  margin-bottom: 28px;
  color: var(--gold-soft);
}

.s3__eyebrow span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.s3__eyebrow img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.s3__eyebrow strong {
  font-size: clamp(0.86rem, 1.05vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  white-space: nowrap;
}

.s3 h2 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.s3 h2 span {
  display: block;
  color: var(--gold-soft);
}

.s3__content > p {
  max-width: 560px;
  margin: 28px 0 52px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.6;
}

.s3__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 620px);
}

.s3__features article {
  display: grid;
  min-height: 220px;
  align-content: start;
  justify-items: center;
  gap: 14px;
  padding: 0 28px;
  text-align: center;
}

.s3__features article + article {
  border-left: 1px solid rgba(217, 154, 40, 0.38);
}

.s3__features img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.s3__features h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
  font-weight: 500;
  line-height: 1.18;
}

.s3__features p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.45;
}

.s4 {
  display: flex;
  align-items: center;
  padding: 64px 5.5vw 80px;
  background: url("../img/fundoS4.png") center / cover no-repeat;
  text-align: center;
}

.s4__inner {
  width: min(100%, 1340px);
  margin: 0 auto;
}

.s4__eyebrow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: min(100%, 440px);
  margin: 0 auto 14px;
}

.s4__eyebrow span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.s4__eyebrow strong {
  color: var(--gold-soft);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.s4 h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.s4 h2 span {
  color: var(--gold-soft);
}

.s4__text {
  max-width: 820px;
  margin: 24px auto 28px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.55;
}

.s4-carousel {
  position: relative;
}

.s4-carousel__viewport {
  overflow: hidden;
}

.s4-carousel__track {
  --visible-cards: 5;
  --carousel-gap: 10px;
  display: flex;
  gap: var(--carousel-gap);
  transform: translateX(0);
  transition: transform 420ms ease;
}

.s4-card {
  flex: 0 0 calc((100% - ((var(--visible-cards) - 1) * var(--carousel-gap))) / var(--visible-cards));
  overflow: hidden;
  aspect-ratio: 1 / 1.42;
  border: 1px solid rgba(217, 154, 40, 0.9);
  border-radius: 8px;
  background: var(--green-950);
}

.s4-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s4-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(0, 31, 18, 0.82);
  color: var(--gold-soft);
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.s4-carousel__arrow:hover {
  background: rgba(217, 154, 40, 0.18);
  transform: translateY(-50%) scale(1.05);
}

.s4-carousel__arrow--prev {
  left: -52px;
}

.s4-carousel__arrow--next {
  right: -52px;
}

.s4-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 22px;
}

.s4-carousel__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.s4-carousel__dots button.is-active {
  background: var(--gold);
}

.s4__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 870px);
  margin: 0 auto 28px;
}

.s4__features article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 70px;
  padding: 0 22px;
}

.s4__features article + article {
  border-left: 1px solid rgba(217, 154, 40, 0.45);
}

.s4__features img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.s4__features p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.2;
  text-align: left;
}

.s4__cta {
  width: min(100%, 560px);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 154, 40, 0.62);
}

.s4__cta h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.s4__cta p {
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: clamp(0.92rem, 1vw, 1rem);
}

.s4__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #9b6416;
  border-radius: 8px;
  padding: 0 42px;
  background: linear-gradient(135deg, #f6c161, #c87d17);
  color: #102016;
  font-weight: 700;
  text-transform: uppercase;
}

.s4__button img {
  width: 24px;
  height: 24px;
}

.s5 {
  display: flex;
  align-items: center;
  padding: 88px 5.5vw;
  background:
    radial-gradient(circle at 50% 28%, rgba(217, 154, 40, 0.1), transparent 28%),
    linear-gradient(180deg, #002415 0%, #00331f 48%, #002112 100%);
}

.s5__inner {
  width: min(100%, 1060px);
  margin: 0 auto;
}

.s5__heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(100%, 710px);
  margin: 0 auto 52px;
}

.s5__heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.s5 h2 {
  margin: 0;
  color: var(--gold-soft);
  font-size: clamp(1.15rem, 1.8vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 24px;
}

.testimonial-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: center;
  padding: 32px 28px 22px;
  border: 1px solid rgba(217, 154, 40, 0.88);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 154, 40, 0.12), transparent 32%),
    rgba(0, 42, 25, 0.7);
  text-align: center;
}

.testimonial-card__quote {
  height: 54px;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.7;
}

.testimonial-card p {
  margin: 0 0 30px;
  color: var(--white);
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.48;
}

.testimonial-card h3 {
  margin: auto 0 8px;
  color: var(--gold-soft);
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
  font-weight: 500;
}

.testimonial-card > span {
  color: var(--muted);
  font-size: clamp(0.94rem, 1vw, 1rem);
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 32px;
}

.testimonial-card__stars img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.testimonial-card__lotus {
  width: 66px;
  height: 38px;
  margin-top: auto;
  object-fit: contain;
  filter: hue-rotate(95deg) saturate(1.4);
}

.s5__button {
  display: flex;
  width: min(100%, 520px);
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(0, 42, 25, 0.72);
  color: var(--gold-soft);
  text-align: left;
}

.s5__button img {
  width: 42px;
  height: 42px;
}

.s5__button span {
  display: grid;
  gap: 3px;
}

.s5__button strong {
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.s5__button small {
  color: var(--muted);
  font-size: clamp(0.82rem, 0.9vw, 0.92rem);
}

.s6 {
  display: flex;
  align-items: center;
  padding: 76px 5.5vw;
  background: url("../img/fundoS6.png") center / cover no-repeat;
  text-align: center;
}

.s6__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.s6__eyebrow {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 12px;
  width: min(100%, 500px);
  margin: 0 auto 12px;
  color: var(--gold-soft);
}

.s6__eyebrow span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.s6__eyebrow img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.s6__eyebrow strong {
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.s6 h2,
.s7 h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(3rem, 5.1vw, 5.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.s6 h2 span,
.s7 h2 span {
  color: var(--gold-soft);
  font-style: italic;
}

.s6__text {
  max-width: 620px;
  margin: 20px auto 52px;
  color: var(--muted);
  font-family: var(--font-title);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.45;
}

.s6__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 42px;
}

.s6__steps article {
  position: relative;
  display: grid;
  justify-items: center;
}

.s6__steps article + article::before {
  content: "";
  position: absolute;
  top: 62px;
  right: calc(50% + 58px);
  width: calc(100% - 86px);
  border-top: 2px dotted rgba(217, 154, 40, 0.74);
}

.s6__steps b {
  position: absolute;
  top: -20px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6c161, #c87d17);
  color: #102016;
  font-size: 1.2rem;
}

.s6__icon {
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 20px;
  background: rgba(0, 42, 25, 0.66);
}

.s6__icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.s6__steps h3 {
  max-width: 190px;
  margin: 14px 0 12px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 1.3vw, 1.35rem);
  font-weight: 500;
  line-height: 1.12;
}

.s6__steps h3::after {
  content: "";
  display: block;
  width: 62px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--gold);
}

.s6__steps p {
  max-width: 180px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  line-height: 1.45;
}

.s6__button {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0 54px;
  background: rgba(0, 42, 25, 0.7);
  color: var(--gold-soft);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.s6__button::after,
.s7__button--outline::after,
.s7__button--primary::after {
  content: ">";
  font-size: 1.25rem;
}

.s6__button img {
  width: 42px;
  height: 42px;
}

.s7 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 92px 5.5vw;
  background: url("../img/fundoS7.png") center / cover no-repeat;
  text-align: center;
}

.s7__content {
  width: min(100%, 690px);
}

.s7 h2 span {
  display: block;
  font-size: 1.18em;
  font-style: normal;
}

.s7__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  width: min(100%, 430px);
  margin: 22px auto;
}

.s7__divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.s7__divider img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.s7 p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.42;
}

.s7__actions {
  display: grid;
  gap: 18px;
  width: min(100%, 560px);
  margin: 0 auto;
}

.s7__button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 8px;
  padding: 0 28px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.s7__button--primary {
  border: 1px solid #9b6416;
  background: linear-gradient(135deg, #f6c161, #c87d17);
  color: #102016;
}

.s7__button--primary img {
  width: 30px;
  height: 30px;
}

.s7__button--outline {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  background: rgba(0, 42, 25, 0.45);
}

.footer {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: 92px 5.5vw 44px;
  background:
    linear-gradient(180deg, rgba(0, 10, 6, 0.68), rgba(0, 10, 6, 0.82)),
    url("../img/fundoFooter.png") center / cover no-repeat;
  color: var(--muted);
  text-align: center;
}

.footer__brand {
  display: grid;
  justify-items: center;
}

.footer__logo {
  width: clamp(130px, 15vw, 210px);
  margin-bottom: 12px;
}

.footer__brand strong {
  color: var(--gold-soft);
  font-family: var(--font-title);
  font-size: clamp(4.2rem, 8vw, 8rem);
  font-weight: 600;
  line-height: 0.85;
}

.footer__brand span {
  color: var(--gold-soft);
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.footer__social {
  display: flex;
  gap: 28px;
  margin-top: 18px;
  transform: translateY(-56px);
}

.footer__social a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(0, 31, 18, 0.48);
}

.footer__social img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer__bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 5.5vw 26px;
  border-top: 1px solid rgba(217, 154, 40, 0.55);
}

.footer__bottom p {
  margin: 0;
  font-size: clamp(0.86rem, 0.95vw, 1rem);
}

.footer__bottom a {
  color: var(--gold-soft);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .s1,
  .s2,
  .s3,
  .s4,
  .s5,
  .s6,
  .s7 {
    min-height: auto;
    padding: 38px 24px 132px;
    background-position: 62% center;
  }

  .hero::after,
  .s1::after,
  .s2::after,
  .s3::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 31, 18, 0.58);
  }

  .hero {
    background-position: 78% -220px;
  }

  .hero__brand {
    margin-bottom: 32px;
  }

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

  .hero__features article:nth-child(3),
  .s1__cards article:nth-child(3) {
    border-left: 0;
  }

  .hero__features article:nth-child(n + 3),
  .s1__cards article:nth-child(n + 3) {
    border-top: 1px solid rgba(217, 154, 40, 0.28);
  }

  .section-footer {
    flex-direction: column;
    gap: 8px;
  }

  .hero__footer i {
    width: 56px;
    height: 1px;
  }

  .s2 {
    padding-bottom: 76px;
    background-position: 58% top;
  }

  .s2__intro {
    margin-bottom: 48px;
  }

  .s3 {
    padding-bottom: 76px;
    background-position: 60% center;
  }

  .s3__features {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 420px;
  }

  .s3__features article {
    min-height: auto;
    padding: 0;
  }

  .s3__features article + article {
    border-left: 0;
  }

  .s4 {
    padding-bottom: 76px;
  }

  .s4-carousel__track {
    --visible-cards: 3;
  }

  .s4-carousel__arrow--prev {
    left: -8px;
  }

  .s4-carousel__arrow--next {
    right: -8px;
  }

  .s4-carousel__viewport {
    padding-inline: 42px;
  }

  .s4__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
  }

  .s4__features article:nth-child(3) {
    border-left: 0;
  }

  .s4__features article:nth-child(n + 3) {
    border-top: 1px solid rgba(217, 154, 40, 0.35);
  }

  .s5 {
    padding-bottom: 76px;
  }

  .testimonials {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-inline: auto;
  }

  .testimonial-card {
    min-height: auto;
  }

  .s6__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 24px;
  }

  .s6__steps article + article::before {
    display: none;
  }

  .s7 {
    padding-bottom: 76px;
  }

  .carousel__track {
    --visible-cards: 2;
  }

  .carousel__arrow--prev {
    left: -8px;
  }

  .carousel__arrow--next {
    right: -8px;
  }

  .carousel__viewport {
    padding-inline: 42px;
  }
}

@media (max-width: 560px) {
  .hero,
  .s1,
  .s2,
  .s3,
  .s4,
  .s5,
  .s6,
  .s7 {
    padding-inline: 18px;
  }

  .hero h1,
  .s1 h2,
  .s2 h2,
  .s3 h2 {
    font-size: clamp(2.45rem, 13vw, 3.4rem);
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .hero__brand {
    gap: 14px;
  }

  .hero__logo {
    width: clamp(118px, 36vw, 170px);
  }

  .s3__eyebrow {
    grid-template-columns: auto 1fr;
    width: 100%;
  }

  .s3__eyebrow span {
    display: none;
  }

  .s3__eyebrow strong {
    white-space: normal;
  }

  .s4 h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .s4-carousel__track {
    --visible-cards: 1;
  }

  .s4-carousel__viewport {
    padding-inline: 34px;
  }

  .s4__features {
    grid-template-columns: 1fr;
  }

  .s4__features article,
  .s4__features article:nth-child(3),
  .s4__features article:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid rgba(217, 154, 40, 0.35);
  }

  .s4__features article:first-child {
    border-top: 0;
  }

  .s4__button {
    width: 100%;
    padding-inline: 18px;
  }

  .s5__heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 34px;
  }

  .s5__heading span {
    display: none;
  }

  .s5 h2 {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
  }

  .s5__button {
    border-radius: 18px;
    padding: 14px 18px;
  }

  .s6__eyebrow {
    grid-template-columns: auto 1fr;
  }

  .s6__eyebrow span {
    display: none;
  }

  .s6 h2,
  .s7 h2 {
    font-size: clamp(2.6rem, 12vw, 3.7rem);
  }

  .s6__steps {
    grid-template-columns: 1fr;
  }

  .s6__button,
  .s7__button {
    width: 100%;
    padding-inline: 18px;
  }

  .s6__button {
    border-radius: 18px;
  }

  .footer {
    min-height: 560px;
    padding-inline: 18px;
  }

  .footer__bottom {
    padding-inline: 18px;
  }

  .hero__actions,
  .btn {
    width: 100%;
  }

  .hero__features,
  .s1__cards {
    grid-template-columns: 1fr;
  }

  .hero__features article,
  .s1__cards article {
    min-height: 104px;
  }

  .hero__features article + article,
  .s1__cards article + article,
  .hero__features article:nth-child(n + 3),
  .s1__cards article:nth-child(n + 3) {
    border-top: 1px solid rgba(217, 154, 40, 0.28);
    border-left: 0;
  }

  .services__heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services__heading span {
    display: none;
  }

  .services__heading h3 {
    font-size: 1.18rem;
    letter-spacing: 0.12em;
  }

  .carousel__track {
    --visible-cards: 1;
  }

  .carousel__viewport {
    padding-inline: 34px;
  }

  .service-card {
    min-height: 292px;
  }

  .carousel__arrow {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }
}
