:root {
  --brand-red: #b6080a;
  --brand-red-strong: #d20b0e;
  --brand-dark: #2d2d2f;
  --brand-dark-soft: #5f636a;
  --brand-dark-surface: #3b3d42;
  --brand-white: #ffffff;
  --brand-black: #111111;
  --brand-muted: rgba(255, 255, 255, 0.78);
  --brand-line: rgba(255, 255, 255, 0.16);
  --ticker-height: 56px;
  --max-width: 1180px;
  --radius-card: 26px;
  --radius-button: 14px;
  --pad-x: clamp(20px, 4.5vw, 56px);
  --pad-y: clamp(60px, 8vw, 110px);
  --carousel-gap: 18px;
  --shadow-soft: 0 28px 60px rgba(0, 0, 0, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--ticker-height);
  background: var(--brand-white);
  color: var(--brand-black);
  font-family: "Sora", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex-shrink: 0;
  fill: currentColor;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.gallery-section,
.benefits-section,
.about-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

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

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

.section-label {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-title-light {
  color: var(--brand-white);
}

.section-heading {
  text-align: center;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 30px;
  border: 0;
  border-radius: var(--radius-button);
  background: var(--brand-red);
  color: var(--brand-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  background: var(--brand-red-strong);
}

.btn-cta .icon {
  font-size: 1rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.ticker {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  overflow: hidden;
  height: var(--ticker-height);
  background: var(--brand-red);
  color: var(--brand-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  min-height: 100%;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 34px;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

@keyframes ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--ticker-height));
  background:
    linear-gradient(180deg, rgba(38, 38, 38, 0.18), rgba(0, 0, 0, 0.42)),
    url("assets/img/fundo.webp") center/cover no-repeat,
    linear-gradient(180deg, #3b3d42, #1d1d1d);
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(38, 38, 38, 0.18), rgba(0, 0, 0, 0.42)),
      url("assets/img/fundo-mobile.webp") center/cover no-repeat,
      linear-gradient(180deg, #3b3d42, #1d1d1d);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 26%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 28px
    );
  opacity: 0.22;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--ticker-height));
  padding-top: clamp(32px, 6vw, 72px);
  padding-bottom: clamp(32px, 6vw, 72px);
}

.hero-card {
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.hero-top-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(210px, 24vw, 280px);
  gap: clamp(18px, 2.8vw, 30px);
  align-items: center;
  padding: clamp(28px, 3.8vw, 40px);
}

.hero-card-strip {
  padding: 14px clamp(20px, 3vw, 32px);
  background: var(--brand-red);
  color: #fff;
  text-align: center;
}

.hero-card-strip p {
  margin: 0;
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-card-strip strong {
  color: #fff;
  font-weight: 700;
}

.hero-logo {
  width: min(100%, 232px);
  max-height: 390px;
  object-fit: contain;
  justify-self: start;
  margin-left: -12px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.08));
  order: 2;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 500px;
  justify-self: center;
  margin-left: -16px;
  order: 1;
}

.hero-title {
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--brand-red);
  font-size: clamp(2.7rem, 5.2vw, 4.55rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
  text-shadow: 0 10px 24px rgba(182, 8, 10, 0.08);
}

.hero-subtitle {
  margin: 16px 0 0;
  color: var(--brand-red);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.2;
}

.hero-cta {
  margin-top: 18px;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--brand-white);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}

.hero-scroll-cue .icon {
  font-size: 1rem;
  transform: rotate(90deg);
}

.gallery-section {
  padding: var(--pad-y) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.carousel-block {
  position: relative;
  margin-top: 34px;
}

.carousel-viewport {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}

.carousel-viewport::before,
.carousel-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.carousel-viewport::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0) 88%, rgba(255, 255, 255, 0.6) 100%);
}

.carousel-viewport::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0.1) 100%);
}

.carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  will-change: transform;
}

.carousel-slide {
  min-width: calc((100% - (var(--carousel-gap) * 2)) / 3);
  flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3);
}

.carousel-slide-labeled {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #ffffff 0%, #ececec 100%);
  color: #1a1a1a;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.carousel-slide-labeled:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
}

.carousel-slide-labeled img {
  flex: 1 1 auto;
  max-height: 240px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  margin: auto;
  display: block;
}

.slide-label {
  margin-top: 10px;
  display: block;
  text-align: center;
}

.slide-label strong {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--brand-red);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-red);
  color: var(--brand-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(22, 22, 22, 0.94);
}

.carousel-arrow.prev {
  left: calc(var(--pad-x) - 10px);
}

.carousel-arrow.next {
  right: calc(var(--pad-x) - 10px);
}

.carousel-arrow .icon {
  font-size: 1.1rem;
}

.carousel-dots {
  display: none;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(182, 8, 10, 0.28);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--brand-red);
}

.benefits-section {
  padding: var(--pad-y) 0;
  background: #ffffff;
  text-align: center;
}

.benefits-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

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

.benefit-card {
  padding: 28px 24px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(95, 99, 106, 0.92), rgba(33, 33, 35, 0.98));
  color: var(--brand-white);
  text-align: center;
  border: 3px solid var(--brand-red);
  box-shadow: 0 6px 0 0 var(--brand-red), var(--shadow-soft);
}

.benefit-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}

.benefit-icon img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.benefit-icon svg {
  width: 72px;
  height: 72px;
  stroke: var(--brand-white);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.42rem;
  line-height: 1.12;
  font-weight: 700;
  color: var(--brand-white);
  text-align: center;
}

.benefit-note {
  margin: -3px 0 0;
  min-height: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.benefits-grid-four .benefit-card:nth-child(3) h3 {
  font-size: 1.24rem;
  white-space: nowrap;
}

.benefits-grid-four .benefit-card:first-child h3 {
  line-height: 1.18;
}

.about-section {
  padding: var(--pad-y) 0;
  background: linear-gradient(180deg, #5c6068 0%, #000000 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.about-copy {
  color: var(--brand-white);
}

.about-copy p:not(.section-label) {
  margin: 18px 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.86);
}

.about-cta {
  margin-top: 28px;
  align-self: center;
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .about-copy {
    align-items: center;
    text-align: center;
  }
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
}

.about-image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 28px;
}

.footer {
  padding: 34px 0 0;
  background: #000000;
  color: var(--brand-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.footer-brand,
.footer-card {
  padding: 22px;
  min-height: 164px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-logo {
  width: min(100%, 150px);
  max-height: 220px;
  object-fit: contain;
  margin: 0 auto;
}

.footer-brand {
  align-items: center;
  text-align: center;
}

.footer-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  text-align: center;
}

.footer-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin: 0 auto;
}

.footer-card .icon {
  margin-top: 0;
}

.footer-contact {
  display: grid;
  gap: 10px;
  place-items: center;
  align-content: center;
}

.footer-bottom {
  margin-top: 30px;
  padding: 16px 20px;
  background: #000000;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--brand-red);
  color: var(--brand-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp .icon {
  font-size: 1.2rem;
}

body.mmc-modal-open {
  overflow: hidden;
}

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

.mmc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mmc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.mmc-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 28px;
  background: #1f2024;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.mmc-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mmc-modal__panel {
  padding: 34px 30px 30px;
}

.mmc-modal__title {
  margin: 6px 0 14px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.mmc-form {
  display: grid;
  gap: 16px;
}

.mmc-form__field {
  display: grid;
  gap: 8px;
}

.mmc-form__label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.mmc-form__required {
  color: #ff5a5a;
  margin-left: 2px;
}

.mmc-form__optional {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  margin-left: 4px;
}

.mmc-form__error {
  margin: 0;
  min-height: 0;
  font-size: 13px;
  line-height: 1.3;
  color: #ff7a7a;
  display: none;
}

.mmc-form__error.is-visible {
  display: block;
}

.mmc-form__input.is-invalid,
.mmc-form__select.is-invalid {
  border-color: #ff5a5a;
  box-shadow: 0 0 0 3px rgba(255, 90, 90, 0.16);
}

.mmc-form__input,
.mmc-form__select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  padding: 15px 16px;
  outline: none;
}

.mmc-form__input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.mmc-form__select option {
  color: #111111;
}

.mmc-form__input:focus,
.mmc-form__select:focus {
  border-color: rgba(182, 8, 10, 0.95);
  box-shadow: 0 0 0 3px rgba(182, 8, 10, 0.18);
}

.mmc-form__submit,
.mmc-result__button {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: var(--brand-red);
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 18px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.mmc-form__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.mmc-form__footer {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.mmc-result[hidden] {
  display: none;
}

.mmc-result {
  text-align: center;
}

.mmc-result__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 8px auto 18px;
  border-radius: 999px;
  font-size: 42px;
  font-weight: 800;
}

.mmc-result__icon[data-variant="good"] {
  background: rgba(63, 179, 75, 0.16);
  color: #56d364;
}

.mmc-result__icon[data-variant="warn"] {
  background: rgba(255, 193, 7, 0.16);
  color: #ffd24d;
}

.mmc-result__title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.mmc-result__text {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
  .hero-top-row,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .hero-card {
    text-align: center;
  }

  .hero-logo {
    width: min(100%, 180px);
    order: 1;
    justify-self: center;
    margin-left: 0;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
    margin-left: 0;
    order: 2;
  }

  .carousel-slide {
    min-width: calc((100% - var(--carousel-gap)) / 2);
    flex-basis: calc((100% - var(--carousel-gap)) / 2);
  }

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

@media (max-width: 820px) {
  .carousel-slide {
    min-width: 100%;
    flex-basis: 100%;
  }
}

@media (max-width: 767px) {
  .ticker-item {
    font-size: 0.82rem;
    padding: 0 20px;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-card {
    border-radius: 28px;
  }

  .hero-top-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 16px 18px;
  }

  .hero-logo {
    width: min(100%, 110px);
    max-height: 110px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero-subtitle {
    margin-top: 6px;
    font-size: 1rem;
  }

  .hero-cta {
    margin-top: 12px;
  }

  .hero-card-strip {
    padding: 10px 16px;
  }

  .hero-card-strip p {
    font-size: 0.88rem;
  }

  .hero-copy {
    max-width: 100%;
    margin-left: 0;
    justify-self: center;
  }

  .hero-title {
    gap: 4px;
  }

  .hero-scroll-cue {
    display: none;
  }

  .carousel-slide {
    min-width: 100%;
    flex-basis: 100%;
  }

  .carousel-slide-labeled {
    min-height: 300px;
    padding: 14px 14px 12px;
    border-radius: 22px;
  }

  .carousel-slide-labeled img {
    max-height: 156px;
  }

  .slide-label {
    margin-top: 6px;
  }

  .slide-label strong {
    font-size: 1rem;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .benefits-grid-four {
    grid-template-columns: 1fr;
  }

  .benefit-card h3 {
    font-size: 1.42rem;
  }

  .benefit-note {
    font-size: 1rem;
  }

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

  .mmc-modal {
    padding: 14px;
  }

  .mmc-modal__panel {
    padding: 28px 20px 22px;
  }

  .mmc-modal__title {
    font-size: 28px;
  }
}
