/* ============================================
   LP Família — CSS Puro
   Réplica do tema MUI do site principal
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #4A4A4A;
  --primary-light: #6E6E6E;
  --primary-dark: #2C2C2C;
  --secondary: #C9A96C;
  --secondary-light: #D4BE8A;
  --secondary-dark: #A68950;
  --whatsapp: #128C7E;
  --whatsapp-hover: #0d7265;
  --whatsapp-green: #25D366;
  --bg-default: #FAFAF8;
  --bg-paper: #FFFFFF;
  --bg-warm: #f8f5f0;
  --text-primary: #2C2C2C;
  --text-secondary: #707070;
  --gold-10: rgba(201, 169, 108, 0.1);
  --gold-15: rgba(201, 169, 108, 0.15);
  --gold-20: rgba(201, 169, 108, 0.2);
  --gold-30: rgba(201, 169, 108, 0.3);
  --gold-08: rgba(201, 169, 108, 0.08);
  --gold-05: rgba(201, 169, 108, 0.05);
  --font-heading: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(18,140,126,0.25);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-hero: 0 20px 60px rgba(0,0,0,0.4);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-default);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- Utility ---------- */
.text-gold {
  color: var(--secondary);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.section-title--left {
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 0.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.5;
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--whatsapp {
  background-color: var(--whatsapp);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--whatsapp:hover {
  background-color: var(--whatsapp-hover);
  box-shadow: 0 6px 16px rgba(18, 140, 126, 0.35);
  transform: translateY(-2px);
}

.btn--large {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ---------- Watermarks ---------- */
.watermark {
  position: absolute;
  bottom: -60px;
  width: 320px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.watermark--left {
  left: -80px;
}

.watermark--right {
  right: -80px;
}

.watermark--dark {
  opacity: 0.05;
  filter: invert(1) brightness(1.2);
}

.watermark--light {
  opacity: 0.04;
  filter: brightness(0.4);
}

/* ---------- Badges ---------- */
.badges-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.badge-tag {
  background-color: var(--gold-08);
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 40px 0;
  background: linear-gradient(135deg, #4A4A4A 0%, #2d2d2d 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__image-wrapper {
  position: relative;
  width: 160px;
  height: 200px;
  flex-shrink: 0;
}

.hero__image-frame {
  position: absolute;
  inset: -6px;
  background: linear-gradient(135deg, rgba(201,169,108,0.4) 0%, rgba(201,169,108,0.15) 100%);
  border-radius: 8px;
  transform: rotate(3deg);
}

.hero__image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}

.hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__content {
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: var(--gold-15);
  color: var(--secondary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 500;
  margin-bottom: 16px;
  border: 1px solid var(--gold-30);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__badge a {
  color: inherit;
  text-decoration: none;
}

.hero__badge a:hover {
  text-decoration: underline;
}

.hero__badge-separator {
  display: none;
}

.hero h1 {
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #F5EFE7;
}

.hero__subtitle {
  font-size: 0.9rem;
  margin-bottom: 16px;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.7;
  font-family: var(--font-body);
}

.hero__description {
  font-size: 0.85rem;
  margin-bottom: 24px;
  opacity: 0.85;
  line-height: 1.7;
  font-style: italic;
}

.hero__description strong {
  font-style: normal;
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */
.como-funciona {
  padding: 40px 0;
  background-color: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.step {
  text-align: center;
  padding: 16px;
}

.step__icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--gold-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
}

.step__icon {
  width: 32px;
  height: 32px;
  color: var(--secondary);
  fill: var(--secondary);
}

.step__number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.step__desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   CTA MOBILE
   ============================================ */
.cta-mobile {
  padding: 32px 0;
  background-color: var(--bg-warm);
  text-align: center;
}

.cta-mobile__text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ============================================
   SITUAÇÕES
   ============================================ */
.situacoes {
  padding: 40px 0;
  background-color: white;
}

.situacoes__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.situacao-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--gold-30);
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
}

.situacao-card:hover {
  border-color: var(--secondary);
  background-color: var(--gold-05);
}

.situacao-card__icon {
  font-size: 1.5rem;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
  padding: 40px 0;
  background-color: #FAFAF8;
  position: relative;
  overflow: hidden;
}

.diferenciais__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.diferenciais__image-wrapper {
  position: relative;
  width: 180px;
  height: 230px;
  flex-shrink: 0;
}

.diferenciais__image-frame {
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, rgba(201,169,108,0.25) 0%, rgba(201,169,108,0.08) 100%);
  border-radius: 12px;
  transform: rotate(-3deg);
}

.diferenciais__image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.diferenciais__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.diferenciais__content {
  width: 100%;
}

.diferenciais__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.diferencial-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--gold-20);
  border-radius: 12px;
  background-color: white;
}

.diferencial-card__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.diferencial-card__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--secondary);
}

.diferencial-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.diferencial-card p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.diferencial-card__badge {
  display: inline-block;
  background-color: var(--gold-10);
  color: var(--secondary);
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 500;
}

/* ============================================
   CONHEÇA SEUS DIREITOS
   ============================================ */
.direitos {
  padding: 40px 0;
  background-color: white;
}

.direitos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 2rem;
}

.direito-card {
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
}

.direito-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.direito-card ul {
  padding-left: 16px;
  list-style: disc;
}

.direito-card li {
  margin-bottom: 4px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 40px 0;
  background-color: #FAFAF8;
  position: relative;
  overflow: hidden;
}

.faq .section-title {
  margin-bottom: 2.5rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--gold-20);
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--secondary);
  background-color: rgba(201,169,108,0.02);
}

.faq-item.active {
  border-color: var(--secondary);
}

.faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__question {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.faq-item__toggle {
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: 300;
  margin-left: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__toggle {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  margin-top: 12px;
}

.faq-item.active .faq-item__answer {
  display: block;
}

.faq-item__answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 48px 0;
  background: linear-gradient(135deg, #4A4A4A 0%, #2d2d2d 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-final__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-final__image-wrapper {
  position: relative;
  width: 150px;
  height: 190px;
  flex-shrink: 0;
}

.cta-final__image-frame {
  position: absolute;
  inset: -6px;
  background: linear-gradient(135deg, rgba(201,169,108,0.4) 0%, rgba(201,169,108,0.15) 100%);
  border-radius: 12px;
  transform: rotate(3deg);
}

.cta-final__image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.cta-final__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cta-final__content {
  text-align: center;
}

.cta-final__content h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.cta-final__text {
  margin-bottom: 16px;
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.7;
}

.cta-final__urgency {
  margin-bottom: 32px;
  opacity: 0.7;
  font-style: italic;
  font-size: 0.875rem;
}

.cta-final__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #1A1A1A;
  color: white;
  padding: 24px 0;
  text-align: center;
}

.footer p {
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
}

.footer a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--secondary);
}



/* ============================================
   RESPONSIVE — sm (600px)
   ============================================ */
@media (min-width: 600px) {
  .container {
    padding: 0 24px;
  }

  .hero__image-wrapper {
    width: 240px;
    height: 310px;
  }

  .hero__badge {
    font-size: 0.8rem;
    padding: 6px 20px;
    gap: 8px;
  }

  .hero__badge-separator {
    display: inline;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diferenciais__image-wrapper {
    width: 220px;
    height: 280px;
  }

  .diferenciais__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-final__image-wrapper {
    width: 180px;
    height: 230px;
  }

  .cta-mobile {
    display: none;
  }
}

/* ============================================
   RESPONSIVE — md (900px)
   ============================================ */
@media (min-width: 900px) {
  .container {
    padding: 0 32px;
  }

  /* Hero */
  .hero {
    padding: 80px 0;
  }

  .hero__grid {
    flex-direction: row;
    gap: 48px;
  }

  .hero__image-wrapper {
    width: 320px;
    height: 400px;
    order: 2;
  }

  .hero__image-frame {
    inset: -15px;
    border-radius: 16px;
  }

  .hero__image-container {
    border-radius: 12px;
  }

  .hero__content {
    text-align: left;
    flex: 1;
    order: 1;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.15rem;
    max-width: 600px;
  }

  .hero__description {
    font-size: 1rem;
    max-width: 550px;
  }

  .hero__cta {
    justify-content: flex-start;
  }

  .btn--large {
    padding: 16px 32px;
  }

  /* Como Funciona */
  .como-funciona {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Situações */
  .situacoes {
    padding: 64px 0;
  }

  /* Diferenciais */
  .diferenciais {
    padding: 64px 0;
  }

  .diferenciais__grid {
    flex-direction: row;
    gap: 48px;
  }

  .diferenciais__image-wrapper {
    width: 260px;
    height: 330px;
  }

  .diferenciais__image-frame {
    inset: -10px;
    border-radius: 16px;
  }

  .diferenciais__image-container {
    border-radius: 12px;
  }

  .section-title--left {
    text-align: left;
  }

  /* Direitos */
  .direitos {
    padding: 64px 0;
  }

  .direitos__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* FAQ */
  .faq {
    padding: 64px 0;
  }

  .faq-item {
    padding: 24px;
  }

  .faq-item__question {
    font-size: 1rem;
  }

  /* CTA Final */
  .cta-final {
    padding: 64px 0;
  }

  .cta-final__grid {
    flex-direction: row;
    gap: 48px;
  }

  .cta-final__image-wrapper {
    width: 220px;
    height: 280px;
  }

  .cta-final__image-frame {
    inset: -8px;
    border-radius: 16px;
  }

  .cta-final__image-container {
    border-radius: 12px;
  }

  .cta-final__content {
    text-align: left;
    flex: 1;
  }

  .cta-final__content h2 {
    font-size: 1.75rem;
  }

  .cta-final__text {
    max-width: 500px;
  }

  .cta-final__urgency {
    max-width: 450px;
  }

  .cta-final__cta {
    justify-content: flex-start;
  }

  /* Watermarks */
  .watermark {
    bottom: -80px;
  }

  .watermark--left {
    left: -60px;
  }

  .watermark--right {
    right: -60px;
  }

}
