/* ========================================
   CSS VARIABLES & RESET
   Brand: Amanda Proost Identity Manual
   Fonts: Instrument Serif + Work Sans
   Colors: Bordeaux, Rosé, Silk, Capuccino, Midnight
   ======================================== */
:root {
  /* Brand Colors */
  --color-bordeaux: #520E23;
  --color-rose: #FCE3E3;
  --color-silk: #FFF2E9;
  --color-capuccino: #B99A8B;
  --color-midnight: #2E2D2C;

  /* Functional Colors */
  --color-primary: var(--color-bordeaux);
  --color-primary-light: #7a2040;
  --color-primary-bg: var(--color-rose);
  --color-accent: var(--color-capuccino);

  --color-bg: var(--color-silk);
  --color-bg-alt: #ffffff;
  --color-bg-dark: var(--color-midnight);

  --color-text: var(--color-midnight);
  --color-text-light: #5a5856;
  --color-text-lighter: #8a8683;
  --color-white: #ffffff;

  /* Typography — Instrument Serif + Work Sans */
  --font-heading: 'Instrument Serif', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 6rem 0;
  --container-width: 1140px;

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(82, 14, 35, 0.04);
  --shadow-md: 0 4px 20px rgba(82, 14, 35, 0.07);
  --shadow-lg: 0 8px 40px rgba(82, 14, 35, 0.10);
  --shadow-xl: 0 16px 60px rgba(82, 14, 35, 0.12);

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
  font-weight: 400;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  color: var(--color-bordeaux);
}

strong {
  font-weight: 600;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-bordeaux);
  margin-bottom: 0.75rem;
  background: var(--color-rose);
  padding: 0.35rem 1.15rem;
  border-radius: 50px;
}

.section-header h2 {
  margin-top: 0.5rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn i {
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--color-bordeaux);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(82, 14, 35, 0.25);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(82, 14, 35, 0.35);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

.btn-nav {
  background: var(--color-bordeaux);
  color: var(--color-white);
  padding: 0.6rem 1.35rem;
  font-size: 0.8rem;
}

.btn-nav:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}

.btn-whatsapp,
.btn-instagram {
  background: transparent;
  color: var(--color-silk);
  border: 1.5px solid var(--color-capuccino);
  box-shadow: none;
}

.btn-whatsapp:hover,
.btn-instagram:hover {
  background: var(--color-bordeaux);
  border-color: var(--color-bordeaux);
  color: var(--color-silk);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(82, 14, 35, 0.3);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 242, 233, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(82, 14, 35, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-midnight);
}

.nav-logo span {
  color: var(--color-bordeaux);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-light);
  position: relative;
  letter-spacing: 0.2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-bordeaux);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-bordeaux);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-midnight);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(160deg, var(--color-silk) 0%, var(--color-rose) 40%, var(--color-silk) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(82, 14, 35, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.4rem 1rem;
  background: var(--color-white);
  border: 1px solid rgba(82, 14, 35, 0.1);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: var(--color-bordeaux);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 480px;
  font-weight: 300;
}

.hero-cta {
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--color-bordeaux);
}

.stat span {
  font-size: 0.75rem;
  color: var(--color-text-lighter);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--color-capuccino);
  opacity: 0.4;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  max-width: 420px;
}

.hero-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-image-decoration {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-capuccino);
  border-radius: var(--radius-lg);
  opacity: 0.5;
  z-index: 0;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ========================================
   BENEFÍCIOS
   ======================================== */
.beneficios {
  background: var(--color-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(82, 14, 35, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-bordeaux), var(--color-capuccino));
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-emoji {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.benefit-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
  color: var(--color-bordeaux);
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-weight: 300;
}

.benefit-card--highlight {
  background: var(--color-bordeaux);
  color: var(--color-white);
}

.benefit-card--highlight::before {
  display: none;
}

.benefit-card--highlight .benefit-emoji {
  filter: grayscale(0);
}

.benefit-card--highlight h3 {
  color: var(--color-rose);
}

.benefit-card--highlight p {
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   MÉTODO
   ======================================== */
.metodo {
  background: var(--color-bg-alt);
}

.metodo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.metodo-card {
  background: var(--color-silk);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(82, 14, 35, 0.06);
  transition: var(--transition);
  position: relative;
}

.metodo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.metodo-card--wide {
  grid-column: span 2;
}

.metodo-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: var(--color-capuccino);
  opacity: 0.6;
}

.metodo-card h3 {
  margin-bottom: 0.65rem;
  color: var(--color-bordeaux);
}

.metodo-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-weight: 300;
}

.metodo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.metodo-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 300;
}

.metodo-list li i {
  color: var(--color-bordeaux);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.metodo-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(82, 14, 35, 0.08);
  font-size: 0.85rem !important;
  font-style: italic;
  color: var(--color-capuccino) !important;
}

.metodo-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.depoimentos {
  background: var(--color-rose);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depoimento-card.hidden-card {
  display: none;
}

.depoimentos-ver-mais {
  text-align: center;
  margin-top: 2rem;
}

.depoimentos-ver-mais .btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-bordeaux);
  color: var(--color-bordeaux);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.depoimentos-ver-mais .btn-outline:hover {
  background: var(--color-bordeaux);
  color: var(--color-white);
}

.depoimentos-ver-mais.hidden {
  display: none;
}

.depoimento-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(82, 14, 35, 0.06);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.depoimento-quote {
  margin-bottom: 1rem;
}

.depoimento-quote i {
  color: var(--color-capuccino);
  font-size: 1.25rem;
  opacity: 0.5;
}

.depoimento-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  font-weight: 300;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(82, 14, 35, 0.06);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-capuccino);
}

.author-avatar--initials {
  background: var(--color-bordeaux);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.depoimento-author strong {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========================================
   BÔNUS
   ======================================== */
.bonus {
  background: var(--color-bg);
}

.bonus-card-wrapper {
  background: var(--color-white);
  border: 1px solid rgba(82, 14, 35, 0.08);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.bonus-content {
  flex: 1;
}

.bonus-content h2 {
  margin: 0.75rem 0 1rem;
}

.bonus-content p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.bonus-visual {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  background: var(--color-bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.bonus-visual i {
  font-size: 3rem;
  color: var(--color-rose);
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
  background: var(--color-bg-alt);
}

.cta-card {
  background: var(--color-midnight);
  padding: 4rem;
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--color-white);
}

.cta-card h2 {
  color: var(--color-silk);
  margin-bottom: 0.75rem;
}

.cta-card p {
  color: var(--color-capuccino);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-midnight);
  color: var(--color-capuccino);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-silk);
}

.footer-logo span {
  color: var(--color-capuccino);
}

.footer-content p {
  font-size: 0.78rem;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-capuccino);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-bordeaux);
  color: var(--color-silk);
  transform: translateY(-2px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    display: flex;
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 280px;
  }

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

  .depoimentos-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .metodo-card--wide {
    grid-column: span 1;
  }

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

  .bonus-card-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-silk);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(82, 14, 35, 0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .btn-nav {
    display: none;
  }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 640px) {
  :root {
    --section-padding: 2.5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* ── NAVBAR ── */
  .nav-container {
    height: 60px;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  /* ── HERO — fit in one screen ── */
  .hero {
    padding: 5rem 0 2.5rem;
    min-height: auto;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-image-wrapper {
    max-width: 220px;
  }

  .hero-image-wrapper img {
    border-radius: var(--radius-md);
  }

  .hero-image-decoration {
    top: -10px;
    right: -10px;
    border-radius: var(--radius-md);
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1.5px;
  }

  h1 {
    font-size: 1.75rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  .hero-cta {
    margin-bottom: 1.5rem;
  }

  .hero-cta .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat strong {
    font-size: 0.95rem;
  }

  .stat span {
    font-size: 0.65rem;
  }

  .stat-divider {
    height: 24px;
  }

  .hero-wave svg {
    height: 40px;
  }

  /* ── SECTIONS — compact ── */
  .section-header {
    margin-bottom: 2rem;
  }

  .section-tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.85rem;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  /* ── BENEFÍCIOS — compact cards ── */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .benefit-card {
    padding: 1.25rem 1.25rem;
    border-radius: var(--radius-sm);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.15rem;
    text-align: left;
  }

  .benefit-emoji {
    font-size: 1.5rem;
    margin-bottom: 0;
    grid-row: 1 / 3;
    align-self: center;
  }

  .benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0;
    align-self: end;
  }

  .benefit-card p {
    font-size: 0.82rem;
    line-height: 1.55;
    grid-column: 2;
  }

  .benefit-card--highlight {
    grid-template-columns: auto 1fr;
  }

  /* ── MÉTODO — compact ── */
  .metodo-grid {
    gap: 0.75rem;
  }

  .metodo-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-sm);
  }

  .metodo-number {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
  }

  .metodo-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }

  .metodo-card p {
    font-size: 0.82rem;
  }

  .metodo-list {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    margin-top: 0.65rem;
  }

  .metodo-list li {
    font-size: 0.82rem;
  }

  .metodo-note {
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    font-size: 0.78rem !important;
  }

  .metodo-cta {
    margin-top: 1.5rem;
  }

  /* ── DEPOIMENTOS — stacked ── */
  .depoimentos-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: none;
  }

  .depoimentos-ver-mais {
    margin-top: 1rem;
  }

  .depoimentos-ver-mais .btn-outline {
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
  }

  .depoimento-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-sm);
  }

  .depoimento-quote i {
    font-size: 1rem;
  }

  .depoimento-card p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
  }

  /* ── BÔNUS — compact ── */
  .bonus-card-wrapper {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-md);
    gap: 1.5rem;
  }

  .bonus-content h2 {
    font-size: 1.35rem;
  }

  .bonus-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .bonus-visual {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
  }

  .bonus-visual i {
    font-size: 2rem;
  }

  /* ── CTA FINAL — compact ── */
  .cta-card {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .cta-card h2 {
    font-size: 1.35rem;
  }

  .cta-card p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .cta-buttons {
    gap: 0.65rem;
  }

  .cta-buttons .btn {
    padding: 0.7rem 1.35rem;
    font-size: 0.85rem;
  }

  /* ── FOOTER — compact ── */
  .footer {
    padding: 1.5rem 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 0.65rem;
  }

  .footer-logo {
    font-size: 1rem;
  }

  .footer-content p {
    font-size: 0.7rem;
  }
}
