/* ============================================
   LP Hands On Dr. Duprat — Full Page
   Fontes: DM Serif Display + DM Sans
   ============================================ */

:root {
  --bg-dark: #080a0e;
  --bg-light: #f5f4f0;
  --text-primary: #f0f0f0;
  --text-secondary: #8a9bb0;
  --text-dark: #1a1a1a;
  --text-dark-secondary: #4a4a4a;
  --accent-gold: #c8a86e;
  --accent-gold-light: #dbc49a;
  --accent-gold-dim: rgba(200, 168, 110, 0.2);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --container-max: 1200px;
  --container-narrow: 760px;
  --section-padding: clamp(64px, 10vw, 120px);
}

/* ============ RESET ============ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  overflow-x: hidden;
}

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

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

/* ============ SHARED: Divider ============ */

.section-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-gold-dim) 20%,
    var(--accent-gold) 50%,
    var(--accent-gold-dim) 80%,
    transparent
  );
}

/* ============ SHARED: Button ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: fit-content;
  border: none;
}

.btn svg {
  transition: transform 0.3s ease;
}

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

.btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 168, 110, 0.25);
}

.btn--outline:active {
  transform: translateY(0);
}

.btn--dark {
  color: var(--text-dark);
  border-color: rgba(26, 26, 26, 0.15);
  background: var(--bg-dark);
  color: var(--text-primary);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.btn--dark:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 6px 24px rgba(200, 168, 110, 0.25);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============ SEÇÃO 1: HERO ============ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg-dark) 0%,
    rgba(8, 10, 14, 0.85) 25%,
    rgba(8, 10, 14, 0.4) 55%,
    rgba(8, 10, 14, 0.15) 100%
  );
}

.hero__bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.hero__content {
  max-width: 620px;
  padding: clamp(100px, 14vh, 140px) 0 clamp(48px, 8vh, 80px);
}

.hero__logo {
  margin-bottom: clamp(28px, 4vh, 48px);
}

.hero__logo img {
  width: clamp(130px, 15vw, 200px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border: 1px solid var(--accent-gold-dim);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: clamp(20px, 3vh, 28px);
  width: fit-content;
}

.hero__badge-sep {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-gold);
  opacity: 0.5;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero__headline em {
  font-style: italic;
  color: var(--accent-gold-light);
}

.hero__author {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-top: clamp(8px, 1.5vh, 14px);
  margin-bottom: clamp(18px, 3vh, 28px);
}

.hero__sub {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: clamp(28px, 4vh, 40px);
}

/* ============ SEÇÃO 2: PROBLEMA ============ */

.problema {
  background: var(--bg-light);
  padding: var(--section-padding) clamp(24px, 5vw, 48px);
  position: relative;
}

.problema__container {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.problema__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: clamp(32px, 5vh, 52px);
}

.problema__headline em {
  font-style: italic;
  color: var(--accent-gold);
}

.problema__body {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-dark-secondary);
}

.problema__body p {
  margin-bottom: 1.5em;
}

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

.problema__lead {
  border-left: 3px solid var(--accent-gold);
  padding-left: clamp(16px, 2.5vw, 28px);
  margin-bottom: 2em;
}

.problema__lead p {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ============ SEÇÃO 3: MÉTODO TBR ============ */

.metodo {
  background: var(--bg-dark);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 48px);
  position: relative;
}

.metodo__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.metodo__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: clamp(48px, 6vh, 72px);
}

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

.metodo__card {
  padding: clamp(28px, 3vw, 40px);
  background: rgba(200, 168, 110, 0.04);
  border: 1px solid rgba(200, 168, 110, 0.1);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.metodo__card:hover {
  border-color: rgba(200, 168, 110, 0.25);
  background: rgba(200, 168, 110, 0.07);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.metodo__card-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  opacity: 0.6;
  margin-bottom: 16px;
}

.metodo__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--accent-gold-light);
  margin-bottom: 4px;
}

.metodo__card-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: clamp(12px, 2vh, 20px);
}

.metodo__card-text {
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
}

.metodo__integracao {
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  background: rgba(200, 168, 110, 0.06);
  border: 1px solid rgba(200, 168, 110, 0.12);
  border-radius: 4px;
}

.metodo__integracao p {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1em;
}

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

.metodo__cta-wrap {
  text-align: center;
  margin-top: clamp(36px, 5vh, 56px);
}

/* ============ SEÇÃO 4: AGENDA ============ */

.agenda {
  background: var(--bg-light);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 48px);
  position: relative;
}

.agenda__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.agenda__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: clamp(40px, 5vh, 64px);
}

.agenda__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.agenda__bloco-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: clamp(16px, 2vh, 24px);
}

.agenda__lista {
  list-style: none;
}

.agenda__lista li {
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark-secondary);
  padding-left: 20px;
  border-left: 2px solid rgba(200, 168, 110, 0.3);
  margin-bottom: 16px;
  transition: color 0.2s ease;
}

.agenda__lista li:last-child {
  margin-bottom: 0;
}

.agenda__lista li:hover {
  color: var(--text-dark);
}

.agenda__separador {
  border: none;
  border-top: 1px solid rgba(200, 168, 110, 0.2);
  margin: clamp(28px, 4vh, 44px) 0;
}

.agenda__badge-turma {
  display: inline-flex;
  padding: 10px 20px;
  border: 1px solid var(--accent-gold);
  border-radius: 2px;
  color: var(--accent-gold);
  background: rgba(200, 168, 110, 0.08);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 24px;
}

.agenda__fechamento {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 28px;
}

.agenda__image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  max-height: 600px;
}

/* ============ SEÇÃO 5: AUTORIDADE ============ */

.autoridade {
  background: var(--bg-dark);
  position: relative;
}

.autoridade__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.autoridade__foto {
  position: relative;
  overflow: hidden;
}

.autoridade__foto img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center 20%;
}

.autoridade__bio {
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 64px);
}

.autoridade__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: clamp(20px, 3vh, 32px);
}

.autoridade__texto {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}

.autoridade__texto p {
  margin-bottom: 1.3em;
}

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

.autoridade__numeros {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  flex-wrap: wrap;
  margin-top: clamp(28px, 4vh, 44px);
  padding-top: clamp(24px, 3vh, 36px);
  border-top: 1px solid rgba(200, 168, 110, 0.15);
}

.autoridade__num {
  flex: 1;
  min-width: 100px;
}

.autoridade__num-valor {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--accent-gold-light);
  line-height: 1;
}

.autoridade__num-plus {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--accent-gold-light);
}

.autoridade__num-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ============ SEÇÃO 6: INVESTIMENTO ============ */

.investimento {
  background: var(--bg-light);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 48px);
  position: relative;
}

.investimento__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.investimento__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: clamp(40px, 5vh, 64px);
}

.investimento__card {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px);
  background: #fff;
  border: 1px solid rgba(200, 168, 110, 0.2);
  border-radius: 6px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.investimento__card:hover {
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.investimento__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: clamp(24px, 3vh, 36px);
}

.investimento__info {
  margin-bottom: 0;
}

.investimento__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
}

.investimento__info-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.investimento__info-item--address {
  padding-left: 30px;
  font-size: 0.85rem;
  margin-top: -4px;
}

.investimento__sep {
  border: none;
  border-top: 1px solid rgba(200, 168, 110, 0.15);
  margin: clamp(20px, 3vh, 32px) 0;
}

.investimento__incluso-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.investimento__incluso-lista {
  list-style: none;
}

.investimento__incluso-lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dark-secondary);
}

.investimento__incluso-lista li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.investimento__preco {
  text-align: center;
}

.investimento__preco-parcela-prefix {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark-secondary);
  margin-bottom: 4px;
}

.investimento__preco-valor {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--text-dark);
}

.investimento__preco-avista {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark-secondary);
  margin-top: 8px;
}

.investimento__argumento {
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark-secondary);
  text-align: center;
  margin-top: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.investimento .btn {
  margin-top: clamp(24px, 3vh, 36px);
}

/* ============ SEÇÃO 7: FAQ ============ */

.faq {
  background: var(--bg-dark);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 48px);
  position: relative;
}

.faq__container {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: clamp(40px, 5vh, 60px);
}

.faq__item {
  border-bottom: 1px solid rgba(200, 168, 110, 0.1);
}

.faq__pergunta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: clamp(18px, 2.5vh, 24px) 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  text-align: left;
  transition: color 0.2s ease;
}

.faq__pergunta:hover {
  color: var(--accent-gold-light);
}

.faq__pergunta:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Ícone +/× */
.faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--accent-gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__icon::before {
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__pergunta[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq__pergunta[aria-expanded="true"] .faq__icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq__resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding-bottom: 0;
}

.faq__resposta[aria-hidden="false"] {
  padding-bottom: clamp(18px, 2.5vh, 24px);
}

.faq__resposta p {
  font-size: clamp(0.88rem, 1.1vw, 0.95rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ============ SEÇÃO 8: CTA FINAL ============ */

.cta-final {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 12vw, 120px) clamp(24px, 5vw, 48px);
  background: var(--bg-dark);
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.15;
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 168, 110, 0.04) 0%, transparent 60%);
  z-index: 1;
}

.cta-final__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.cta-final__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: clamp(24px, 3vh, 36px);
}

.cta-final__texto p {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 1.2em;
}

.cta-final__urgencia {
  font-weight: 500 !important;
  color: var(--text-primary) !important;
}

.cta-final .btn {
  margin-top: clamp(28px, 4vh, 44px);
}

.cta-final__dados {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-top: 24px;
}

.cta-final__logo {
  margin-top: 40px;
}

.cta-final__logo img {
  width: 100px;
  opacity: 0.5;
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============ RESPONSIVE: TABLET (≥768px) ============ */

@media (min-width: 768px) {
  .metodo__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .metodo__integracao {
    grid-column: 1 / -1;
  }

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

  .agenda__image {
    position: sticky;
    top: 80px;
  }

  .autoridade__grid {
    grid-template-columns: 45fr 55fr;
    min-height: 600px;
  }

  .autoridade__foto img {
    height: 100%;
  }

  .autoridade__foto::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background: linear-gradient(to right, transparent 0%, var(--bg-dark) 100%);
  }
}

/* ============ RESPONSIVE: TABLET METODO (768–1199px) ============ */

@media (min-width: 768px) and (max-width: 1199px) {
  .metodo__grid {
    grid-template-columns: 1fr 1fr;
  }

  .metodo__card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero__bg {
    width: 50%;
  }

  .hero__bg::after {
    background: linear-gradient(
      to right,
      var(--bg-dark) 0%,
      rgba(8, 10, 14, 0.8) 30%,
      rgba(8, 10, 14, 0.3) 60%,
      rgba(8, 10, 14, 0.1) 100%
    );
  }

  .autoridade__grid {
    grid-template-columns: 40fr 60fr;
  }
}

/* ============ RESPONSIVE: DESKTOP (≥1200px) ============ */

@media (min-width: 1200px) {
  .hero__content {
    padding-left: clamp(0px, 2vw, 40px);
  }

  .hero__headline {
    font-size: clamp(3.8rem, 5vw, 5rem);
  }

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

  .metodo__card:nth-child(3) {
    grid-column: auto;
  }

  .autoridade__bio {
    padding: clamp(40px, 5vw, 80px) clamp(48px, 5vw, 80px);
  }
}

/* ============ RESPONSIVE: MOBILE (≤767px) ============ */

@media (max-width: 767px) {
  .hero {
    min-height: auto;
  }

  .hero__bg {
    position: relative;
    width: 100%;
    height: 45vh;
    right: auto;
  }

  .hero__bg::after {
    background: linear-gradient(to bottom, transparent 30%, var(--bg-dark) 100%);
  }

  .hero__bg::before {
    display: none;
  }

  .hero__inner {
    min-height: auto;
    padding: 0 clamp(20px, 5vw, 32px);
  }

  .hero__content {
    padding: 0 0 clamp(40px, 6vh, 60px);
    margin-top: -120px;
    position: relative;
    z-index: 2;
  }

  .agenda__image {
    order: -1;
  }

  .agenda__image img {
    max-height: 400px;
  }
}

/* ============ RESPONSIVE: MOBILE SMALL (≤480px) ============ */

@media (max-width: 480px) {
  .hero__badge {
    gap: 8px;
    padding: 6px 14px;
    font-size: 0.68rem;
  }

  .btn--full,
  .hero .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-final {
    min-height: auto;
    padding: 80px 24px;
  }

  .cta-final__headline {
    font-size: 1.8rem;
  }

  .investimento__card {
    padding: 28px 20px;
  }

  .investimento__preco-valor {
    font-size: 2rem;
  }
}

/* ============ AOS ============ */

[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
