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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: #ffffff #111;

}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

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

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

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/Desk-bg.jpg?v=0.1');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 35%,
      rgba(0, 0, 0, 0.15) 70%,
      transparent 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 8vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__accent {
  color: #EC2125;
  font-weight: 900;
  font-style: italic;
}

.hero__subheadline {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 460px;
}

@keyframes btn-flash {
  0% {
    left: -100%;
  }

  20% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0d6b2e 0%, #15a34a 60%, #22c55e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 22px 48px;
  border-radius: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  overflow: hidden;
}

.hero__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.25) 50%, transparent 80%);
  animation: btn-flash 3s ease-in-out infinite;
  pointer-events: none;
}

.hero__cta svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.hero__cta:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(21, 163, 74, 0.45);
}

.hero__cta:hover svg {
  transform: translate(2px, -2px);
}

.hero__cta:active {
  transform: scale(0.97);
}

.ribbons-wrapper {
  position: relative;
  width: 100%;
  z-index: 10;
  overflow: visible;
}

.ribbons-wrapper--top {
  z-index: 100;
  margin-top: -32px;
  overflow: visible;
}

.ribbon {
  width: 100%;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}

.ribbons-wrapper--top .ribbon--white {
  background: #fff;
  padding: 20px 0;
  transform: rotate(-1.5deg);
  margin-left: -2%;
  width: 104%;
  z-index: 12;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.2);
}

.ribbons-wrapper--top .ribbon--white .ribbon__content {
  color: #111;
  font-size: clamp(0.65rem, 1.4vw, 1rem);
}

.ribbons-wrapper--top .ribbon--top {
  background: linear-gradient(90deg, #1a0506 0%, #3a0a0b 30%, #EC2125 100%);
  padding: 22px 0;
  z-index: 11;
  position: relative;
  box-shadow:
    0 3px 12px rgba(0, 0, 0, 0.3),
    0 10px 40px rgba(236, 33, 37, 0.15);
}

.ribbon__track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.ribbon__content {
  flex-shrink: 0;
  font-size: clamp(0.7rem, 1.5vw, 1.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0 10px;
  white-space: nowrap;
}


/* ===== FORM SECTION ===== */

.form-section {
  background: #000;
  padding: 100px 0;
}

.form-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@keyframes badge-flash {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.form-section__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(195, 195, 195, 0.6) 50%, #fff 60%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: badge-flash 3s ease-in-out infinite;
}

.form-section__title {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.form-section__title strong {
  font-weight: 900;
  color: #fff;
}

.form-accent {
  color: rgba(255,255,255,0.5) !important;
  font-weight: 900;
  font-style: italic;
}

/* ===== STEPS WRAPPER & CONNECTOR ===== */

.steps-wrapper {
  position: relative;
}

.steps-connector {
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
  border-radius: 2px;
}

.steps-connector__fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #7d0b0d, #f04448);
  border-radius: 2px;
  transition: height 0.1s linear;
}

.step-card {
  position: relative;
  padding-left: 48px;
  margin-bottom: 36px;
}

.step-card:last-child {
  margin-bottom: 0;
}

.step-card__number {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 900;
  font-size: 0.8rem;
  z-index: 1;
  transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

.step-card__number.is-active {
  background: linear-gradient(135deg, #1f0101 0%, #b30f11 50%, #EC2125 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(236, 33, 37, 0.4);
}

.step-card__body {
  padding-top: 4px;
}

.step-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.step-card__text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.step-card__text strong {
  color: rgba(255, 255, 255, 0.7);
}

.step-card__note {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ===== DQV FORM ===== */

.dqv-form__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dqv-form__field {
  display: flex;
  flex-direction: column;
  position: relative;
}

.dqv-form__input {
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.dqv-form__input::placeholder {
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

.dqv-form__input:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}

/* Phone field with Brazil flag */
.dqv-form__phone-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.dqv-form__phone-wrap:focus-within {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}

.dqv-form__flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 0 0 16px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 12px;
  margin-right: 2px;
}

.dqv-form__dial {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.dqv-form__input--phone {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 16px 18px 16px 12px;
}

.dqv-form__input--phone:focus {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Custom Select */
.cs-select {
  position: relative;
  z-index: 20;
}

.cs-select.is-open {
  z-index: 100;
}

.cs-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.cs-select.is-selected .cs-select__trigger {
  color: #fff;
}

.cs-select__trigger:focus,
.cs-select.is-open .cs-select__trigger {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}

.cs-select__arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
  transition: transform 0.3s ease, color 0.3s ease;
}

.cs-select.is-open .cs-select__arrow {
  transform: rotate(180deg);
  color: #fff;
}

.cs-select__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 200;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.cs-select.is-open .cs-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cs-select__option {
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}

.cs-select__option:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.cs-select__option.is-active {
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 600;
}

.cs-select__option.is-active::after {
  content: '✓';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Error state */
.dqv-form__field.has-error .dqv-form__input,
.dqv-form__field.has-error .dqv-form__phone-wrap,
.dqv-form__field.has-error .cs-select__trigger {
  border-color: #EC2125;
  background: rgba(236, 33, 37, 0.06);
  box-shadow: 0 0 0 3px rgba(236, 33, 37, 0.08);
}

.dqv-form__error {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #f04448;
  margin-top: 6px;
  padding-left: 4px;
  letter-spacing: 0.01em;
}

.dqv-form__error svg {
  flex-shrink: 0;
}

.dqv-form__field.has-error .dqv-form__error {
  display: flex;
  animation: error-slide-in 0.35s ease;
}

@keyframes error-slide-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes field-shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(5px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
}

.dqv-form__field.has-error > :first-child {
  animation: field-shake 0.5s ease;
}


/* Submit button */
.dqv-form__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #15a34a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 18px 32px;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(21, 163, 74, 0.25);
  animation: submit-border-blink 2s ease-in-out infinite;
}

@keyframes submit-border-blink {

  0%,
  100% {
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(21, 163, 74, 0.25);
  }

  50% {
    border-color: #4ade80;
    box-shadow: 0 4px 20px rgba(21, 163, 74, 0.25), 0 0 12px rgba(74, 222, 128, 0.5);
  }
}

.dqv-form__submit:hover {
  background: #22c55e;
  transform: scale(1.02);
  box-shadow: 0 6px 28px rgba(21, 163, 74, 0.35);
  animation: none;
  border-color: #4ade80;
}

.dqv-form__submit:active {
  transform: scale(0.98);
}

.dqv-form__submit-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.dqv-form__submit:hover .dqv-form__submit-icon {
  transform: translate(3px, -3px);
}

.dqv-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #15a34a;
  animation: none;
}

.dqv-form__submit.is-success {
  background: #15b332;
  box-shadow: 0 4px 20px rgba(21, 179, 50, 0.25);
  animation: none;
}


/* ===== RESPONSIVE ===== */

.form-section__mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .hero::before {
    background-image: url('../img/cell-bg.jpg');
    background-position: top center;
  }

  .hero__overlay {
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.85) 70%,
        rgba(0, 0, 0, 0.95) 100%);
  }

  .hero__content {
    max-width: 100%;
    padding: 360px 28px 80px;
    text-align: center;
    align-items: center;
  }

  .hero__headline {
    font-size: 27px;
    text-align: center;
  }

  .hero__subheadline {
    font-size: clamp(0.82rem, 3.4vw, 0.95rem);
    text-align: center;
    max-width: 340px;
  }

  .hero__cta {
    font-size: 0.95rem;
    padding: 19px;
  }

  .ribbons-wrapper--top {
    margin-top: -18px;
  }

  .ribbons-wrapper--top .ribbon--white {
    padding: 12px 0;
  }

  .ribbons-wrapper--top .ribbon--white .ribbon__content {
    font-size: clamp(0.5rem, 2.2vw, 0.72rem);
  }

  .ribbons-wrapper--top .ribbon--top {
    padding: 12px 0;
  }

  .ribbon__content {
    font-size: clamp(0.5rem, 2.2vw, 0.72rem);
  }

  .form-section {
    padding: 30px 16px 60px;
  }

  .form-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-section__left .form-section__badge {
    display: none;
  }

  .form-section__left .form-section__title {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.12);
    text-align: center;
    text-transform: none;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    line-height: 1.6;
    order: -2;
    padding: 0 8px;
  }

  .form-section__left .form-section__title br {
    display: none;
  }

  .reveal-word {
    transition: color 0.4s ease;
    display: inline;
  }

  .reveal-word.is-revealed {
    color: #fff;
  }

  .reveal-word--accent.is-revealed {
    color: #fff;
    font-weight: 600;
  }

  .form-section__right {
    order: -1;
    width: 100%;
  }

  .form-section__mobile-cta {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 900;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-shadow: 0 0 16px rgba(34, 197, 94, 0.35);
  }

  .form-section__left {
    display: contents;
  }

  .form-section__left .steps-wrapper {
    order: 1;
  }

  .steps-wrapper {
    max-width: 380px;
    margin: 0 auto;
    text-align: left;
  }

  .dqv-form__input {
    font-size: 16px;
    padding: 14px 16px;
  }

  .dqv-form__input--phone {
    padding: 14px 16px 14px 12px;
  }

  .cs-select__trigger {
    font-size: 16px;
    padding: 14px 16px;
  }

  .dqv-form__submit {
    font-size: 0.88rem;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding-top: 260px;
    padding-bottom: 80px;
  }

  .hero__cta {
    font-size: 0.9rem;
    padding: 18px;
  }
}

.scroll-arrow {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 50;
  height: 0;
  margin-top: -27px;
}

.scroll-arrow__circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1010 0%, #d1080b 50%, #ff383c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
  margin-top: -2%;
  box-shadow: 0 4px 16px rgba(236, 33, 37, 0.3);
}

.scroll-arrow__circle:hover {
  transform: scale(1.08);
}

.scroll-arrow__circle svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

@keyframes arrow-ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.scroll-arrow__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(236, 33, 37, 0.45);
  animation: arrow-ring-pulse 2s ease-in-out infinite;
}

.scroll-arrow__ring--delay {
  animation-delay: 0.6s;
}

/* ===== AVISO BANNER ===== */

.aviso-banner {
  background: linear-gradient(135deg, #d10b0e 0%, #EC2125 50%, #ff3131 100%);
  padding: 48px 5vw;
  text-align: center;
}

.aviso-banner__text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.45;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* ===== COMO FUNCIONA ===== */

.como-funciona {
  background: #0a0a0a;
  padding: 80px 0;
}

.como-funciona__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

.como-funciona__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.02em;
}

.como-funciona__title strong {
  font-weight: 900;
  color: #fff;
}

.como-funciona__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cf-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.cf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 33, 37, 0.5), transparent);
}

.cf-card__icon {
  color: #EC2125;
  margin-bottom: 20px;
}

.cf-card__icon--white {
  color: #fff;
}

.cf-card__icon svg {
  width: 36px;
  height: 36px;
}

.cf-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.cf-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 12px;
}

.cf-card__text:last-child {
  margin-bottom: 0;
}

.cf-card__text--highlight {
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

@media (max-width: 768px) {
  .como-funciona {
    padding: 50px 0;
  }

  .como-funciona__title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    margin-bottom: 32px;
  }

  .como-funciona__inner {
    padding: 0 16px;
  }

  .como-funciona__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cf-card {
    padding: 28px 24px;
  }

  .cf-card__title {
    font-size: 0.95rem;
  }

  .cf-card__text {
    font-size: 0.82rem;
  }
}

.como-funciona__footer {
  text-align: center;
  margin-top: 50px;
}

.como-funciona__closing {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 28px;
}

.como-funciona__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #EC2125;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 18px 36px;
  border-radius: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 20px rgba(236, 33, 37, 0.25);
}

.como-funciona__cta:hover {
  background: #ff3131;
  transform: scale(1.02);
}

/* ===== MENTORIA ===== */

.mentoria {
  background: #111;
  padding: 80px 0;
}

.mentoria__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  text-align: center;
}

.mentoria__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #EC2125;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.mentoria__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.mentoria__title strong {
  font-weight: 900;
  color: #fff;
}

.mentoria__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 12px;
}

.mentoria__subtitle strong {
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}

.mentoria__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.mentoria__card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.mentoria__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 33, 37, 0.4), transparent);
}

.mentoria__card-icon {
  color: #EC2125;
  margin-bottom: 18px;
}

.mentoria__card-icon--white {
  color: #fff;
}

.mentoria__card-icon svg {
  width: 32px;
  height: 32px;
}

.mentoria__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.mentoria__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin-bottom: 10px;
}

.mentoria__card-highlight {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.mentoria__closing {
  margin-top: 48px;
}

.mentoria__closing-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.mentoria__closing-text strong {
  color: #fff;
  font-weight: 800;
}

/* ===== FAQ ===== */

.faq {
  background: #0a0a0a;
  padding: 80px 0;
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5vw;
  text-align: center;
}

.faq__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #EC2125;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.faq__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
  line-height: 1.4;
}

.faq__title strong {
  font-weight: 900;
  color: #fff;
}

.faq__list {
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq__question {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
  transform: translateY(-40%) rotate(-135deg);
}

.faq__answer {
  padding: 0 0 22px;
}

.faq__answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ===== FOOTER ===== */

.site-footer {
  background: #000;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  text-align: center;
}

.site-footer__brand {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.site-footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .como-funciona__footer {
    margin-top: 36px;
  }

  .como-funciona__closing {
    font-size: 0.88rem;
    padding: 0 8px;
  }

  .como-funciona__cta {
    font-size: 0.82rem;
    padding: 16px 28px;
    width: 100%;
    justify-content: center;
  }

  .mentoria {
    padding: 50px 0;
  }

  .mentoria__inner {
    padding: 0 16px;
  }

  .mentoria__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .mentoria__card {
    padding: 28px 24px;
  }

  .faq {
    padding: 50px 0;
  }

  .faq__inner {
    padding: 0 16px;
  }

  .faq__question {
    font-size: 0.88rem;
    padding: 18px 36px 18px 0;
  }

  .site-footer {
    padding: 32px 0;
  }
}

/* ===== TESTIMONIALS ===== */

.testimonials {
  background: #f9f9f9;
  padding: 100px 0 80px;
  overflow: hidden;
}

.testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #EC2125;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.testimonials__title {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 48px;
  padding: 0 5vw;
}

.testimonials__title strong {
  font-weight: 900;
  color: #111;
}

.testimonials__arrow {
  display: none;
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonials__track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 5vw;
}

.testimonials__slide {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}

.testimonials__video {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  border-radius: 16px;
  overflow: hidden;
  background: #e8e8e8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonials__video .lvp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.testimonials__footline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
  padding: 0 6px;
}

.testimonials__dots {
  display: none;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.testimonials__dot.is-active {
  background: #EC2125;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testimonials {
    padding: 50px 0 40px;
  }

  .testimonials__title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    padding: 0 24px;
    margin-bottom: 28px;
  }

  .testimonials__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease;
  }

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

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

  .testimonials__arrow:active {
    background: #fff;
    transform: translateY(-50%) scale(0.92);
  }

  .testimonials__carousel {
    overflow: hidden;
  }

  .testimonials__track {
    padding: 0 14vw 0 14vw;
    gap: 16px;
  }

  .testimonials__slide {
    flex: 0 0 72vw;
  }

  .testimonials__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .scroll-arrow__circle {
    margin-top: -6%;
  }
}