/* ============================================
   FG ADVOCACIA BRASIL — LP PREVIDENCIÁRIO
   Mobile-first | Premium Dark/Gold Theme
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --black: #0a0a0a;
  --graphite: #1a1a1a;
  --graphite-light: #2a2a2a;
  --graphite-mid: #333333;
  --gold: #c9a84c;
  --gold-light: #d4b85c;
  --gold-dark: #a8882e;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --white: #ffffff;
  --off-white: #f5f3ef;
  --gray-100: #e8e6e1;
  --gray-200: #d1cfc9;
  --gray-300: #b0ada5;
  --gray-400: #8a8780;
  --gray-500: #6b6862;
  --gray-600: #4a4844;
  --text-primary: #f5f3ef;
  --text-secondary: #b0ada5;
  --text-dark: #1a1a1a;
  --text-dark-secondary: #4a4844;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: 64px;
  --container-px: 20px;
  --container-max: 1200px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--black);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.gold {
  color: var(--gold);
}

.required {
  color: var(--gold);
}

.section {
  padding: var(--section-py) 0;
}

.section__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.25);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold-light);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(201, 168, 76, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo-img {
  height: 36px;
  width: auto;
}

.header__nav {
  display: none;
}

.header__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  padding: 6px 0;
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.header__link:hover {
  color: var(--white);
}

.header__link:hover::after {
  width: 100%;
}

.header__cta {
  display: none;
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 100%;
  padding: 40px 20px;
}

.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gray-200);
  transition: var(--transition);
}

.mobile-nav__link:hover {
  color: var(--gold);
}

.mobile-nav__cta {
  margin-top: 16px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: var(--graphite);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(26, 26, 26, 0.8) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--gray-300);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.hero__trust-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* ---------- SITUAÇÕES / CARDS ---------- */
.situacoes {
  background: var(--black);
}

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

.card {
  background: var(--graphite);
  border: 1px solid var(--graphite-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card__icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  color: var(--gold);
}

.card__icon-wrap svg {
  width: 22px;
  height: 22px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.card__pain {
  font-size: 0.9rem;
  color: var(--gray-300);
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.5;
}

.card__solution {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ---------- EDUCAÇÃO ---------- */
.educacao {
  background: var(--graphite);
}

.educacao__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.educacao__item {
  position: relative;
  padding: 24px;
  background: var(--graphite-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.educacao__item:hover {
  background: var(--graphite-mid);
}

.educacao__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}

.educacao__item-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.educacao__item-text {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.educacao__cta {
  text-align: center;
  padding: 32px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
}

.educacao__cta-text {
  font-size: 1rem;
  color: var(--gray-200);
  margin-bottom: 16px;
}

/* ---------- ATENDIMENTO / STEPS ---------- */
.atendimento {
  background: var(--black);
}

.steps {
  max-width: 640px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
}

.step__content {
  flex: 1;
  padding-bottom: 8px;
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.step__text {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.step__connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 168, 76, 0.2));
  margin-left: 21px;
}

/* ---------- CONFIANÇA / VALORES ---------- */
.confianca {
  background: var(--graphite);
}

.valores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.valor {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--graphite-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.valor:hover {
  background: var(--graphite-mid);
}

.valor__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.valor__icon svg {
  width: 24px;
  height: 24px;
}

.valor__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.valor__text {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--black);
}

.faq__list {
  max-width: 760px;
}

.faq__item {
  border-bottom: 1px solid var(--graphite-light);
}

.faq__item:first-child {
  border-top: 1px solid var(--graphite-light);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-200);
  transition: var(--transition);
}

.faq__question:hover {
  color: var(--white);
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: var(--transition);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ---------- FORMULÁRIO ---------- */
.formulario {
  background: var(--graphite);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.form-info__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.form-info__text {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
}

.form-info__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.form-info__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-300);
}

.form-info__icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.form-info__whatsapp {
  padding: 20px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
}

.form-info__whatsapp p {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-bottom: 12px;
}

/* Form fields */
.form {
  background: var(--graphite-light);
  border: 1px solid var(--graphite-mid);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.form__group {
  margin-bottom: 18px;
}

.form__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--white);
  background: var(--graphite);
  border: 1px solid var(--graphite-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-500);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form__select option {
  background: var(--graphite);
  color: var(--white);
}

.form__textarea {
  resize: vertical;
  min-height: 80px;
}

.form__char-count {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 12px;
}

/* Checkbox */
.form__consent {
  margin-bottom: 24px;
}

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.form__checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form__checkmark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gray-500);
  border-radius: 4px;
  background: var(--graphite);
  transition: var(--transition);
  position: relative;
  margin-top: 2px;
}

.form__checkbox-label input:checked ~ .form__checkmark {
  background: var(--gold);
  border-color: var(--gold);
}

.form__checkbox-label input:checked ~ .form__checkmark::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form__consent-text {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.form__consent-text a {
  color: var(--gold);
  text-decoration: underline;
}

.form__consent-text a:hover {
  color: var(--gold-light);
}

/* Form validation */
.form__input.error,
.form__select.error,
.form__textarea.error {
  border-color: #e74c3c;
}

/* Form success */
.form__success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.form__success.show {
  display: block;
}

.form__success-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin: 0 auto 16px;
}

.form__success h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.form__success p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  background: var(--black);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 2;
}

.cta-final__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-final__text {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-final__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--graphite);
  border-top: 1px solid var(--graphite-light);
  padding-top: 48px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 12px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a,
.footer__links span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--graphite-light);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-600);
}

.footer__bottom-inner a {
  color: var(--gray-500);
}

.footer__bottom-inner a:hover {
  color: var(--gold);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --section-py: 80px;
    --container-px: 32px;
  }

  .section__title {
    font-size: 2.25rem;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero__title {
    font-size: 2.75rem;
  }

  .hero__ctas {
    flex-direction: row;
  }

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

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

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

  .form-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .cta-final__buttons {
    flex-direction: row;
    justify-content: center;
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --section-py: 100px;
    --container-px: 40px;
  }

  .section__title {
    font-size: 2.5rem;
  }

  .header__nav {
    display: flex;
    gap: 28px;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__hamburger {
    display: none;
  }

  .hero__title {
    font-size: 3.25rem;
    max-width: 720px;
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }

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

  .cta-final__title {
    font-size: 2.25rem;
  }

  .form {
    padding: 36px 32px;
  }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
