/* ========================================================
   RAINHA DO PUDIM — Landing Page Styles
   Design: Premium • Feminine • Minimal • Elegant
   ======================================================== */

/* ── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Colors */
  --brown-dark: #5A2A0C;
  --brown-medium: #7A3E1A;
  --caramel: #F39C12;
  --gold: #C47A1F;
  --gold-light: #D4951F;
  --beige: #E8CFA3;
  --beige-light: #F5E6CC;
  --beige-pale: #FDF6EC;
  --red-cta: #E63946;
  --red-cta-hover: #D12836;
  --white: #FFFFFF;
  --gray-placeholder: #E8E4DF;
  --text-muted: #8B6F5E;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: clamp(3.5rem, 8vw, 6rem);
  --container-px: clamp(1.25rem, 4vw, 2rem);
  --container-max: 1080px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(90, 42, 12, 0.08);
  --shadow-medium: 0 8px 40px rgba(90, 42, 12, 0.12);
  --shadow-cta: 0 6px 28px rgba(230, 57, 70, 0.35);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.35s;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--brown-dark);
  background-color: var(--beige-pale);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ── Shared Typographic Elements ───────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--brown-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-title--light {
  color: var(--beige-light);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-align: center;
  width: 100%;
}

.section-label--light {
  color: var(--caramel);
}

.gold {
  color: var(--gold);
}

em {
  font-style: italic;
  color: var(--gold);
}

/* ── Button ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  padding: 1rem 2rem;
  text-align: center;
  line-height: 1.4;
}

.btn--cta {
  background: linear-gradient(90deg, #F2A21B, #fadc87, #F2A21B);
  background-size: 200% auto;
  color: #4a1e0a;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  border-radius: 100px;
  text-transform: uppercase;
  animation: glow-bg 3s linear infinite, ctaPulse 2.8s infinite;
}

.btn--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.7s ease;
}

.btn--cta:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px -6px rgba(242, 162, 27, 0.6);
}

.btn--cta:hover::before {
  left: 100%;
}

.btn--cta:active {
  transform: translateY(0) scale(1);
}

.btn--large {
  font-size: 1.05rem;
  padding: 1.15rem 2.5rem;
}

@keyframes glow-bg {
  to {
    background-position: 200% center;
  }
}

/* Pulse animation for CTA */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 8px 24px -4px rgba(242, 162, 27, 0.4);
  }
  50% {
    box-shadow: 0 12px 32px -4px rgba(242, 162, 27, 0.6);
  }
}

/* ── Image Placeholder ─────────────────────────────────── */
.image-placeholder {
  background: var(--gray-placeholder);
  border: 2px dashed rgba(90, 42, 12, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  gap: 0.75rem;
}

.image-placeholder__icon {
  font-size: 2rem;
  opacity: 0.5;
}

.image-placeholder p {
  max-width: 420px;
}

/* ── Check icon ────────────────────────────────────────── */
.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Animate on scroll ─────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   SECTION: HERO
   ================================================================ */
.hero {
  background: linear-gradient(175deg, var(--beige-pale) 0%, var(--beige-light) 50%, var(--beige) 100%);
  padding: var(--section-py) 0;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.hero__logo {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.hero__logo img {
  display: inline-block;
  height: auto;
  max-height: 60px;
  width: auto;
  opacity: 0.92;
}

.hero__row {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 122, 31, 0.12);
  border: 1px solid rgba(196, 122, 31, 0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: fit-content;
}

.hero__crown {
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brown-dark);
  margin-top: 1rem;
}

.hero__title-highlight {
  display: block;
  color: var(--gold);
  margin-top: 0.25rem;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--brown-medium);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
  margin-top: 1rem;
}

.hero__subtitle strong {
  font-weight: 600;
  color: var(--brown-dark);
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 2.5rem;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--brown-dark);
}

.hero__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__cta {
  width: 100%;
  max-width: 420px;
}

.trust-icons {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  width: 100%;
}

.trust-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.trust-icon svg {
  color: var(--gold);
}

.trust-icon span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
}

.hero__image {
  width: 100%;
}

.hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.hero__fouet {
  position: absolute;
  right: -10px;
  top: 60px;
  opacity: 0.15;
  pointer-events: none;
}

/* ================================================================
   SECTION: PROVA SOCIAL
   ================================================================ */
.prova {
  padding: var(--section-py) 0;
  text-align: center;
  background: var(--white);
}

.prova__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--caramel) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}

.prova__number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.prova__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.prova .section-title {
  margin-bottom: 2.5rem;
}

.prova__image {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.prova__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================================================
   SECTION: DOR
   ================================================================ */
.dor {
  padding: var(--section-py) 0;
  background: var(--beige-pale);
}

.dor__intro {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.dor__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.dor__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration) var(--ease);
}

.dor__list li:hover {
  transform: translateY(-2px);
}

.dor__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.1);
  color: var(--red-cta);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.dor__list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.15rem;
}

.dor__list p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ================================================================
   SECTION: SOLUÇÃO
   ================================================================ */
.solucao {
  padding: var(--section-py) 0;
  text-align: center;
  background: var(--white);
}

.solucao__divider {
  margin-bottom: 1.5rem;
}

.solucao__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.3;
}

.solucao__text {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--brown-medium);
  margin-top: 0.5rem;
  font-weight: 300;
}

.solucao__text strong {
  color: var(--gold);
  font-weight: 700;
}

.solucao__line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--caramel));
  border-radius: 100px;
  margin: 2rem auto 0;
}

/* ================================================================
   SECTION: CONTEÚDO
   ================================================================ */
.conteudo {
  padding: var(--section-py) 0;
  background: var(--beige-pale);
  text-align: center;
}

.conteudo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.conteudo__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-soft);
  text-align: left;
  position: relative;
  border: 1px solid rgba(196, 122, 31, 0.08);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.conteudo__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.conteudo__card-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.conteudo__card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.conteudo__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   SECTION: RESULTADO
   ================================================================ */
.resultado {
  padding: var(--section-py) 0;
  text-align: center;
  background: var(--white);
}

.resultado__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.resultado__image {
  max-width: 650px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.resultado__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================================================
   SECTION: AUTORIDADE
   ================================================================ */
.autoridade {
  padding: var(--section-py) 0;
  background: linear-gradient(175deg, var(--beige-pale), var(--beige-light));
}

.autoridade>.container>.section-label {
  margin-bottom: 1.5rem;
}

.autoridade__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.autoridade__photo {
  position: relative;
  flex-shrink: 0;
}

.autoridade__img-wrapper {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 32px rgba(196, 122, 31, 0.25);
}

.autoridade__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.autoridade__crown {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 4px rgba(90, 42, 12, 0.2));
}

.autoridade__name {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.2;
}

.autoridade__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}

.autoridade__opening {
  font-size: 1.05rem;
  color: var(--brown-medium);
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 480px;
}

.autoridade__opening strong {
  color: var(--brown-dark);
}

.autoridade__story {
  margin-top: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
  text-align: left;
  max-width: 480px;
}

.autoridade__story p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.autoridade__story p:last-child {
  margin-bottom: 0;
}

.autoridade__story strong {
  color: var(--brown-dark);
  font-weight: 600;
}

/* Stats Cards */
.autoridade__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.autoridade__stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid rgba(196, 122, 31, 0.08);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.autoridade__stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.autoridade__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.autoridade__stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}

.autoridade__stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* Closing quote */
.autoridade__closing {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-style: italic;
  color: var(--brown-medium);
  max-width: 600px;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  line-height: 1.6;
}

.autoridade__closing strong {
  color: var(--gold);
  font-weight: 700;
}

/* ================================================================
   SECTION: OFERTA
   ================================================================ */
.oferta {
  padding: var(--section-py) 0;
  background: var(--brown-dark);
  text-align: center;
}

.oferta__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  margin: 2rem auto 0;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.oferta__header {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
  padding: 2rem 1.5rem;
  color: var(--white);
}

.oferta__header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

.oferta__header p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.oferta__content-list {
  padding: 1.75rem 1.5rem 0;
  text-align: left;
}

.oferta__includes {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brown-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.oferta__content-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.oferta__content-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--brown-dark);
}

.oferta__bonus {
  padding: 1.5rem;
  margin: 1rem 1.5rem;
  background: rgba(243, 156, 18, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(243, 156, 18, 0.2);
  text-align: left;
}

.oferta__bonus-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.oferta__bonus ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.oferta__bonus li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--brown-dark);
}

.oferta__pricing {
  padding: 2rem 1.5rem 0;
}

.oferta__old-price {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.oferta__old-price s {
  color: var(--red-cta);
}

.oferta__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.oferta__currency {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.oferta__value {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--brown-dark);
  line-height: 1;
}

.oferta__installments {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.oferta__cta {
  margin: 1.5rem 1.5rem;
  width: calc(100% - 3rem);
}

.oferta__secure {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-bottom: 1.75rem;
}

/* ================================================================
   SECTION: GARANTIA
   ================================================================ */
.garantia {
  padding: var(--section-py) 0;
  background: var(--beige-pale);
}

.garantia__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}

.garantia__shield {
  flex-shrink: 0;
}

.garantia__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--brown-dark);
}

.garantia__subtitle {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.25rem;
}

.garantia__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 0.5rem;
}

.garantia__text strong {
  color: var(--brown-dark);
}

/* ================================================================
   SECTION: CTA FINAL
   ================================================================ */
.cta-final {
  padding: var(--section-py) 0;
  padding-bottom: clamp(4rem, 10vw, 7rem);
  text-align: center;
  background: linear-gradient(175deg, var(--white) 0%, var(--beige-light) 100%);
}

.cta-final__crown {
  margin-bottom: 1rem;
}

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  font-weight: 700;
  color: var(--brown-dark);
  max-width: 500px;
  margin: 0 auto 1rem;
  line-height: 1.3;
}

.cta-final__text {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 2rem;
}

.cta-final__guarantee {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer__disclaimer {
  max-width: 600px;
  margin: 0.75rem auto 0;
  font-size: 0.7rem;
  opacity: 0.5;
}

/* ================================================================
   RESPONSIVE — Tablet (600px+)
   ================================================================ */
@media (min-width: 600px) {
  .conteudo__grid {
    grid-template-columns: 1fr 1fr;
  }

  .garantia__wrapper {
    flex-direction: row;
    text-align: left;
    gap: 2.5rem;
  }

  .dor__list {
    max-width: 620px;
  }

  .autoridade__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================================
   RESPONSIVE — Desktop (900px+)
   ================================================================ */
@media (min-width: 900px) {
  .hero__row {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .hero__content {
    flex: 1;
    max-width: 540px;
  }

  .hero__image {
    flex: 1;
    max-width: 480px;
  }

  .hero__cta {
    width: auto;
  }

  .hero__fouet {
    right: 40px;
    top: 40px;
    width: 100px;
    opacity: 0.12;
  }

  .conteudo__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .autoridade__wrapper {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
    max-width: 780px;
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    align-items: flex-start;
  }

  .autoridade__photo {
    margin-top: 0.5rem;
  }

  .autoridade__img-wrapper {
    width: 180px;
    height: 180px;
  }

  .autoridade__opening,
  .autoridade__story {
    max-width: 100%;
  }

  .autoridade__story {
    margin-left: 0;
  }
}

/* ================================================================
   RESPONSIVE — Large Desktop (1200px+)
   ================================================================ */
@media (min-width: 1200px) {
  .hero .container {
    gap: 5rem;
  }

  :root {
    --container-max: 1140px;
  }
}