/* ===========================
   CASAMENTO SEM PLANILHA
   Landing Page — CSS v2.0
   Premium Design with Images
   =========================== */

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ─── Container ─── */
.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8135a;
  margin-bottom: 12px;
}

.section-eyebrow--left {
  text-align: left;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a2e;
  margin-bottom: 48px;
}

.section-title--center {
  text-align: center;
}

.section-title--white {
  color: #ffffff;
}

/* ─── Button ─── */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 20px 48px;
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
  position: relative;
  overflow: hidden;
}

.btn--large {
  padding: 22px 56px;
  font-size: 1.15rem;
}

.btn--pricing {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  text-align: center;
  padding: 16px 44px;
}

.btn--pricing .btn__main-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  display: block;
}

.btn__highlight {
  color: #ffeb3b;
  font-weight: 900;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.btn--pricing .btn__sub-text {
  font-size: 0.84rem;
  font-weight: 500;
  opacity: 0.95;
  margin-top: 4px;
  display: block;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.95);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 45px rgba(5, 150, 105, 0.6);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:active {
  transform: translateY(-1px) scale(1);
}

.btn--glow {
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4); }
  50% { box-shadow: 0 8px 50px rgba(5, 150, 105, 0.75), 0 0 25px rgba(16, 185, 129, 0.45); }
}

/* ═══════════════════════════════
   HERO — Full-bleed image
   ═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.55) 0%,
    rgba(26, 26, 46, 0.70) 50%,
    rgba(26, 26, 46, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-block;
  background: rgba(232, 19, 90, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 28px;
  border-radius: 50px;
  margin-bottom: 36px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease-out;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero__title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 28px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: 1.35rem;
  font-weight: 500;
  color: #ffb3c6;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__content .btn {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.hero__scroll-indicator span {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  position: relative;
}

.hero__scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 22px; opacity: 0.3; }
}

/* ═══════════════════════════════
   SOCIAL PROOF STRIP
   ═══════════════════════════════ */
.social-strip {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
  padding: 28px 0;
}

.social-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.social-strip__number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffb3c6;
  line-height: 1;
  margin-bottom: 4px;
}

.social-strip__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-strip__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ═══════════════════════════════
   3 PASSOS
   ═══════════════════════════════ */
.steps {
  padding: 100px 0;
}

.steps__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.steps__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

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

.step__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e8135a 0%, #c70039 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(200, 0, 57, 0.3);
}

.step__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a2e;
}

.step__desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
}

.steps__image {
  display: flex;
  justify-content: center;
}

.steps__phone {
  max-width: 380px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease;
}

.steps__phone:hover {
  transform: translateY(-8px) rotate(1deg);
}

/* ═══════════════════════════════
   ACESSO IMEDIATO
   ═══════════════════════════════ */
.access {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f5f2 0%, #ffffff 100%);
}

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

.access__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f0ece8;
  transition: all 0.3s ease;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
}

.access__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(232, 19, 90, 0.15);
}

.access__icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

/* ═══════════════════════════════
   FULLWIDTH IMAGE
   ═══════════════════════════════ */
.fullwidth-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.fullwidth-image--tall {
  height: 480px;
}

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

.fullwidth-image__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(26,26,46,0.3) 0%, rgba(26,26,46,0.6) 100%);
}

.fullwidth-image__overlay--dark {
  background: linear-gradient(180deg, rgba(26,26,46,0.4) 0%, rgba(26,26,46,0.75) 100%);
}

.fullwidth-image__text {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  max-width: 600px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
  line-height: 1.4;
}

.fullwidth-image__text--large {
  font-size: 2rem;
}

.fullwidth-image__text em {
  color: #ffb3c6;
  font-style: italic;
}

.fullwidth-image__text strong {
  color: #ffb3c6;
}

/* ═══════════════════════════════
   PÚBLICO ALVO
   ═══════════════════════════════ */
.target {
  padding: 80px 0 100px;
}

.target__card {
  background: linear-gradient(135deg, #fefcfb 0%, #fff9f6 100%);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid #f5ede8;
  position: relative;
  overflow: hidden;
}

.target__card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e8135a, #ff6b9d, #e8135a);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.target__icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

.target__title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.target__desc {
  font-size: 1rem;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════
   DOR / AGITAÇÃO
   ═══════════════════════════════ */
.pain {
  padding: 100px 0;
  background: #ffffff;
}

.pain__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.pain__text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.75;
}

.pain__highlight {
  font-weight: 700;
  color: #e8135a;
  font-size: 1.1rem !important;
  padding: 16px 24px;
  background: linear-gradient(135deg, #fff5f5 0%, #fef0f0 100%);
  border-radius: 12px;
  border-left: 4px solid #e8135a;
}

.pain__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}

.pain__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
}

.pain__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pain__image:hover img {
  transform: scale(1.03);
}

/* ═══════════════════════════════
   ENTREGÁVEIS
   ═══════════════════════════════ */
.deliverables {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f5f2 0%, #ffffff 100%);
}

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

.deliverable-card {
  background: #ffffff;
  border: 1px solid #efeae5;
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.deliverable-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #e8135a, #ff6b9d);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.deliverable-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

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

.deliverable-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #e8135a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: rgba(232, 19, 90, 0.06);
  padding: 4px 12px;
  border-radius: 20px;
}

.deliverable-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.deliverable-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deliverable-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: #666;
  line-height: 1.55;
}

.deliverable-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #e8135a;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.35;
}

/* ═══════════════════════════════
   BÔNUS
   ═══════════════════════════════ */
.bonuses {
  padding: 100px 0;
}

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

.bonus-card {
  background: linear-gradient(160deg, #fff8f8 0%, #fff2f2 100%);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(232, 19, 90, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(232, 19, 90, 0.12);
}

.bonus-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #e8135a 0%, #c70039 100%);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.bonus-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.bonus-card__quote {
  font-style: italic;
  color: #e8135a;
  font-size: 0.88rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.bonus-card__desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ═══════════════════════════════
   PARA QUEM É
   ═══════════════════════════════ */
.for-who {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f5f2 0%, #ffffff 100%);
}

.for-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.for-who__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f0ece8;
  transition: all 0.3s ease;
}

.for-who__card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.for-who__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8135a, #ff6b9d);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}

.for-who__card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  font-weight: 500;
}

.for-who__warning {
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  padding: 18px 28px;
  background: #fffdf5;
  border-radius: 12px;
  border: 1px solid #f5e6b8;
}

/* ═══════════════════════════════
   STACK DE VALOR
   ═══════════════════════════════ */
.value-stack {
  padding: 100px 0;
}

.value-stack__table {
  max-width: 600px;
  margin: 0 auto 36px;
}

.value-stack__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #efeae5;
  font-size: 0.95rem;
  color: #444;
}

.value-stack__row--bonus {
  color: #e8135a;
  font-weight: 500;
}

.value-stack__price {
  font-weight: 700;
  color: #1a1a2e;
  flex-shrink: 0;
  margin-left: 16px;
}

.value-stack__row--bonus .value-stack__price {
  color: #e8135a;
}

.value-stack__total {
  text-align: center;
  padding-top: 24px;
}

.value-stack__total span:first-child {
  display: block;
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 8px;
}

.value-stack__total-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1a1a2e;
  font-family: 'Playfair Display', serif;
}

/* ═══════════════════════════════
   OFERTA / PREÇO
   ═══════════════════════════════ */
.offer {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f5f2 0%, #ffffff 100%);
}

.offer__text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.7;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.offer__card {
  background: #ffffff;
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.offer__card--compact {
  margin-top: 0;
  padding: 40px 36px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.08);
}

.offer__card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 19, 90, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.offer__from {
  font-size: 1.05rem;
  color: #888;
  margin-bottom: 8px;
}

.offer__from s {
  color: #c70039;
  font-weight: 600;
}

.offer__price {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1;
}

.offer__price-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #888;
}

.offer__installments {
  font-family: 'Playfair Display', serif;
  font-size: 5.2rem;
  font-weight: 900;
  color: #e8135a;
  background: linear-gradient(135deg, #e8135a 0%, #c70039 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1.05;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.offer__installments-num {
  font-size: 3rem;
  font-weight: 800;
  color: #e8135a;
  background: linear-gradient(135deg, #e8135a 0%, #c70039 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer__installments-of {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #4a5568;
  -webkit-text-fill-color: #4a5568;
}

.offer__installments-val {
  font-size: 5.2rem;
  font-weight: 900;
  color: #e8135a;
  background: linear-gradient(135deg, #e8135a 0%, #c70039 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.offer__cash {
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 22px;
}

.offer__cash strong {
  font-size: 1.55rem;
  font-weight: 800;
  color: #111827;
}

.offer__terms {
  font-size: 0.92rem;
  color: #888;
  max-width: 460px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.offer__guarantee-text {
  color: #e8135a;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.offer__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: #aaa;
  font-size: 0.82rem;
}

.offer__secure svg {
  color: #28a745;
}

/* ═══════════════════════════════
   COMPRE AGORA
   ═══════════════════════════════ */
.buy-now {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
}

.buy-now__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.buy-now__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.buy-now__step {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8135a 0%, #c70039 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
}

.buy-now__label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.buy-now__arrow {
  color: rgba(255,255,255,0.3);
  font-size: 1.5rem;
  margin: 0 8px;
  padding-bottom: 28px;
}

/* ═══════════════════════════════
   GARANTIA
   ═══════════════════════════════ */
.guarantee {
  padding: 100px 0;
}

.guarantee__card {
  background: linear-gradient(160deg, #fff8f8 0%, #fff2f2 100%);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  border: 1px solid rgba(232, 19, 90, 0.1);
  box-shadow: 0 8px 40px rgba(232, 19, 90, 0.06);
}

.guarantee__badge-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
}

.guarantee__badge-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guarantee__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.guarantee__card p {
  font-size: 0.98rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee__bold {
  font-weight: 700 !important;
  color: #1a1a2e !important;
  font-size: 1.05rem !important;
}

.guarantee__card .btn {
  margin-top: 16px;
}

/* ═══════════════════════════════
   FECHAMENTO BINÁRIO
   ═══════════════════════════════ */
.binary-close {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f5f2 0%, #ffffff 100%);
}

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

.binary-close__option {
  border-radius: 20px;
  padding: 36px 32px;
  border: 2px solid;
  transition: all 0.3s ease;
}

.binary-close__option--gray {
  border-color: #e0ddd8;
  background: #fafaf8;
}

.binary-close__option--pink {
  border-color: rgba(232, 19, 90, 0.25);
  background: linear-gradient(160deg, #fff8f8 0%, #fff2f2 100%);
  box-shadow: 0 8px 30px rgba(232, 19, 90, 0.08);
}

.binary-close__option--pink:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(232, 19, 90, 0.15);
}

.binary-close__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 14px;
}

.binary-close__label--red {
  color: #e8135a;
}

.binary-close__option p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
}

.binary-close__closing {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 8px;
}

.binary-close__closing--bold {
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 48px;
  font-size: 1.1rem;
}

.binary-close__final-cta {
  max-width: 500px;
  margin: 0 auto;
}

/* ═══════════════════════════════
   FAQ
   ═══════════════════════════════ */
.faq {
  padding: 100px 0;
}

.faq__list {
  max-width: 680px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #efeae5;
}

.faq__question {
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: #e8135a;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  color: #ccc;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f5f2;
}

.faq__item[open] .faq__question::after {
  content: '−';
  color: #fff;
  background: #e8135a;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__answer {
  font-size: 0.95rem;
  color: #666;
  padding-bottom: 22px;
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer {
  padding: 48px 0;
  background: #1a1a2e;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.footer__legal {
  margin-top: 12px;
  font-size: 0.75rem;
  opacity: 0.5;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════
   ANIMATIONS
   ═══════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 900px) {
  .steps__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps__image {
    order: -1;
  }

  .steps__phone {
    max-width: 300px;
  }

  .pain__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pain__image {
    order: -1;
    max-height: 400px;
  }

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

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

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

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }

  .hero__desc {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .steps,
  .access,
  .pain,
  .deliverables,
  .bonuses,
  .for-who,
  .value-stack,
  .offer,
  .guarantee,
  .binary-close,
  .faq {
    padding: 70px 0;
  }

  .target__card {
    padding: 36px 28px;
  }

  .target__title {
    font-size: 1.35rem;
  }

  .for-who__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .binary-close__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offer__card {
    padding: 40px 28px;
  }

  .offer__price {
    font-size: 3.5rem;
  }

  .offer__installments {
    font-size: 4rem;
  }

  .offer__installments-num {
    font-size: 2.4rem;
  }

  .offer__installments-of {
    font-size: 1.15rem;
  }

  .offer__installments-val {
    font-size: 4rem;
  }

  .offer__cash {
    font-size: 1.25rem;
  }

  .offer__cash strong {
    font-size: 1.35rem;
  }

  .value-stack__total-price {
    font-size: 2.8rem;
  }

  .btn--primary {
    padding: 18px 36px;
    font-size: 1rem;
  }

  .btn--large {
    padding: 20px 44px;
    font-size: 1.05rem;
  }

  .btn--pricing {
    padding: 16px 28px;
  }

  .btn--pricing .btn__main-text {
    font-size: 1.05rem;
  }

  .btn--pricing .btn__sub-text {
    font-size: 0.78rem;
  }

  .guarantee__card {
    padding: 40px 28px;
  }

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

  .fullwidth-image {
    height: 300px;
  }

  .fullwidth-image--tall {
    height: 350px;
  }

  .fullwidth-image__text {
    font-size: 1.3rem;
  }

  .fullwidth-image__text--large {
    font-size: 1.5rem;
  }

  .social-strip__inner {
    gap: 24px;
  }

  .social-strip__number {
    font-size: 1.5rem;
  }

  .social-strip__divider {
    display: none;
  }

  .buy-now__arrow {
    display: none;
  }

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

@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__badge {
    font-size: 0.65rem;
    padding: 8px 18px;
    letter-spacing: 1.5px;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .section-title br {
    display: none;
  }

  .offer__price {
    font-size: 3.2rem;
  }

  .offer__installments {
    font-size: 3.2rem;
    gap: 8px;
  }

  .offer__installments-num {
    font-size: 2rem;
  }

  .offer__installments-of {
    font-size: 1.1rem;
  }

  .offer__installments-val {
    font-size: 3.2rem;
  }

  .offer__cash {
    font-size: 1.2rem;
  }

  .offer__cash strong {
    font-size: 1.3rem;
  }

  .value-stack__row {
    font-size: 0.88rem;
  }

  .social-strip__inner {
    gap: 20px;
  }

  .social-strip__item {
    min-width: 80px;
  }

  .fullwidth-image {
    height: 250px;
  }

  .fullwidth-image--tall {
    height: 280px;
  }

  .fullwidth-image__text {
    font-size: 1.1rem;
    padding: 0 8px;
  }

  .fullwidth-image__text--large {
    font-size: 1.2rem;
  }

  .guarantee__badge-img {
    width: 120px;
    height: 120px;
  }

  .btn--pricing {
    padding: 14px 20px;
    width: 100%;
    max-width: 100%;
  }

  .btn--pricing .btn__main-text {
    font-size: 0.95rem;
  }

  .btn--pricing .btn__sub-text {
    font-size: 0.74rem;
  }
}

/* ─── CTA Pulse on offers ─── */
.offer__card .btn--primary,
.guarantee__card .btn--primary,
.binary-close__final-cta .btn--primary {
  animation: glowPulse 2.5s ease-in-out infinite;
}

.offer__card .btn--primary:hover,
.guarantee__card .btn--primary:hover,
.binary-close__final-cta .btn--primary:hover {
  animation: none;
}
