@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --azul: #0077B6;
  --azul-escuro: #023E8A;
  --azul-claro: #90E0EF;
  --verde-cta: #6FB921;
  --verde-cta-hover: #5A961B;
  --laranja: #FF8C00;
  --vermelho: #E53E3E;
  --fundo: #F0F7FF;
  --fundo-card: #FFFFFF;
  --texto: #1A1A2E;
  --texto-sec: #4A5568;
  --borda: #BEE3F8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--fundo);
  color: var(--texto);
  overflow-x: hidden;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--vermelho);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── HERO ── */
.hero-section {
  background: linear-gradient(160deg, #023E8A 0%, #0077B6 60%, #00B4D8 100%);
  padding: 50px 0 60px;
  text-align: center;
}

.collection-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 22px;
  animation: pulse-badge 3s infinite ease-in-out;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.headline {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.headline .destaque {
  color: #FFD60A;
}

.image-wrapper {
  margin: 0 auto 28px;
  max-width: 720px;
}

.mockup-img {
  width: 100%;
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

/* placeholder */
.img-placeholder {
  width: 100%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  gap: 10px;
}

.img-placeholder .ph-icon { font-size: 3rem; }

.hero-badges { margin-bottom: 24px; }

.hero-badges-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.hero-badges-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.hero-pill {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

.subheadline {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-container { text-align: center; }

.cta-button {
  display: inline-block;
  background: var(--verde-cta);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  padding: 18px 38px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(67,160,71,0.45);
  animation: pulse-cta 3s infinite ease-in-out;
  transition: background 0.2s, transform 0.15s;
}

.cta-button:hover {
  background: var(--verde-cta-hover);
  transform: translateY(-2px);
}

@keyframes pulse-cta {
  0%, 100% { 
    box-shadow: 0 8px 24px rgba(111,185,33,0.45); 
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 8px 36px rgba(111,185,33,0.7); 
    transform: scale(1.04);
  }
}

.cta-price {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-top: 12px;
}

.cta-price strong { color: #FFD60A; font-size: 1.1rem; }

.cta-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  margin-top: 6px;
}

/* ── HERO TRUST BADGES ── */
.trust-badges-hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  color: #fff;
  opacity: 0.9;
}

/* ── SECTION TITLE ── */
.section-title {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--azul-escuro);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 16px;
}

.underline-highlight {
  text-decoration: underline;
  text-decoration-color: var(--laranja);
  text-underline-offset: 4px;
}

/* ── CAROUSEL ── */
.carousel-section {
  background: #fff;
  padding: 60px 0 30px;
  overflow: hidden;
}

.carousel-header { text-align: center; margin-bottom: 36px; }

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 14px;
  animation: scroll-left 28s linear infinite;
  width: max-content;
}

.track-reverse {
  animation: scroll-right 32s linear infinite;
}

.carousel-item {
  flex-shrink: 0;
  width: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.carousel-item img { width: 100%; height: auto; display: block; }

.carousel-item .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #BEE3F8, #90E0EF);
  border-radius: 12px;
  font-size: 0.72rem;
  color: var(--azul-escuro);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--fundo);
  padding: 60px 0;
  overflow: hidden;
}

.carousel-item.testimonial-item {
  width: 200px;
  height: 300px;
}

.carousel-item.testimonial-item .img-placeholder {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #1B5E20;
  height: 100%;
}

/* ── SHOWCASE ── */
.showcase-section {
  background: #fff;
  padding: 30px 0 60px;
}

.showcase-container { text-align: center; }

.showcase-card {
  background: var(--fundo);
  border: 2px solid var(--borda);
  border-radius: 16px;
  padding: 32px 28px;
  margin-top: 28px;
  text-align: left;
}

.artist-list { list-style: none; columns: 2; gap: 12px; }

.artist-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texto);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  break-inside: avoid;
}

.artist-bullet { color: var(--azul); font-size: 1.2rem; }

/* ── FEATURES ── */
.features-section {
  background: var(--fundo);
  padding: 60px 0;
}

.features-subtitle {
  text-align: center;
  color: var(--texto-sec);
  font-size: 0.95rem;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-left: 4px solid var(--azul);
}

.feature-icon { font-size: 2rem; flex-shrink: 0; }

.feature-text h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--texto);
  line-height: 1.3;
}

/* ── URGENCY ── */
.urgency-section {
  background: linear-gradient(135deg, #023E8A, #0077B6);
  padding: 60px 0;
}

.urgency-container { text-align: center; }

.urgency-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 44px 32px;
  max-width: 600px;
  margin: 0 auto;
}

.promo-tag {
  display: inline-block;
  background: var(--laranja);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.urgency-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
}

.urgency-card .cta-button { margin-top: 0; }

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 14px;
}

/* ── DELIVERABLES ── */
.deliverables-section {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.deliverables-box {
  background: linear-gradient(160deg, #023E8A, #0077B6);
  border-radius: 20px;
  padding: 36px 28px;
  margin-top: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.deliverables-tag {
  display: inline-block;
  background: #FFD60A;
  color: #023E8A;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.deliverables-img {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.deliverables-img-placeholder {
  width: 100%;
  max-width: 360px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  gap: 8px;
}

.deliverables-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.check-icon {
  color: #69F0AE;
  flex-shrink: 0;
  margin-top: 2px;
}

.bonus-transition {
  margin-top: 50px;
  text-align: center;
}

.bonus-transition h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--azul-escuro);
  line-height: 1.3;
  margin-bottom: 10px;
}

.bonus-transition p {
  color: var(--texto-sec);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.bonus-tag {
  display: inline-block;
  background: var(--laranja);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ── BONUS ── */
.bonus-section {
  background: var(--fundo);
  padding: 60px 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.bonus-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
  border: 1.5px solid #E2E8F0;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,119,182,0.14);
}

.bonus-img-placeholder {
  width: 140px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #BEE3F8, #90E0EF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--azul-escuro);
  font-size: 0.72rem;
  font-weight: 700;
  gap: 6px;
  padding: 10px;
  text-align: center;
}

.bonus-img-placeholder .ph-icon { font-size: 2rem; }

.bonus-img-wrap {
  width: 100%;
  min-height: 340px;
  padding: 40px 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #EEF2FF 0%, #F8FAFC 100%);
}

.bonus-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.30));
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-img {
  transform: scale(1.04) translateY(-4px);
}

.bonus-content {
  padding: 16px 22px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.bonus-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--azul);
  line-height: 1.35;
  text-transform: none;
}

.bonus-desc {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.6;
}

.bonus-value {
  width: 100%;
  margin-top: 12px;
  padding: 12px 22px;
  border-top: 1.5px solid #E2E8F0;
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 600;
  text-align: center;
}

.riscado {
  text-decoration: line-through;
  color: #aaa;
}

.gratis {
  color: var(--verde-cta);
  font-size: 0.95rem;
}

/* ── PLANS ── */
.plans-section {
  background: #fff;
  padding: 70px 0;
}

.plans-header { text-align: center; margin-bottom: 40px; }

.promo-tag-red {
  display: inline-block;
  background: var(--vermelho);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.plans-divider {
  border: none;
  border-top: 2px solid var(--borda);
  max-width: 200px;
  margin: 20px auto 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.plan-card {
  border-radius: 20px;
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-basic {
  background: #fff;
  border: 2px solid var(--borda);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.plan-complete {
  background: linear-gradient(150deg, #0D0D2B 0%, #1A1A5E 45%, #0F3460 100%);
  box-shadow: 0 16px 48px rgba(15,52,96,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}

.plan-title {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--azul-escuro);
  text-align: center;
}

.plan-complete .plan-title { color: #fff; }

.plan-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.plan-img-placeholder {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 6px;
}

.plan-basic .plan-img-placeholder {
  background: linear-gradient(135deg, #BEE3F8, #90E0EF);
  color: var(--azul-escuro);
}

.plan-complete .plan-img-placeholder {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  height: 240px;
}

.plan-complete .plan-img {
  max-width: 320px;
}

.plan-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--texto-sec);
  letter-spacing: 0.5px;
}

.plan-complete .plan-subtitle { color: rgba(255,255,255,0.7); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--texto);
  line-height: 1.4;
}

.plan-complete .plan-features li { color: rgba(255,255,255,0.9); }

.gift-item {
  color: rgba(255,255,255,0.85) !important;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 8px;
  margin-top: 0;
}

.plan-price-box {
  background: var(--fundo);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-complete {
  background: rgba(255,255,255,0.12) !important;
}

.price-old {
  font-size: 0.75rem;
  color: var(--texto-sec);
  font-weight: 500;
}

.price-complete .price-old { color: rgba(255,255,255,0.6); }

.price-current {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--azul-escuro);
}

.price-complete .price-current { color: #FFD60A; }

.price-installments {
  font-size: 0.75rem;
  color: var(--texto-sec);
  font-weight: 500;
}

.price-complete .price-installments { color: rgba(255,255,255,0.6); }

.price-economy {
  font-size: 0.75rem;
  color: var(--verde-cta);
  font-weight: 700;
}

.price-complete .price-economy { color: #69F0AE; }

.green-dot { color: var(--verde-cta); }

.plan-btn {
  display: block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  animation: pulse-cta 3s infinite ease-in-out;
}

.plan-btn:hover { background: var(--verde-cta-hover); }

.btn-basic {
  background: var(--verde-cta);
  color: #fff;
}

.btn-complete {
  background: var(--verde-cta);
  color: #fff;
}

.tag-bestseller {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--laranja);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.promo-tag-red-inner {
  background: rgba(232,62,62,0.25);
  border: 1px solid rgba(232,62,62,0.4);
  color: #ffb3b3;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-align: center;
  letter-spacing: 0.3px;
}

.tag-2x {
  background: rgba(255,214,10,0.15);
  border: 1px solid rgba(255,214,10,0.4);
  color: #FFD60A;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  text-align: center;
}

.hotmart-seal {
  width: 100%;
  max-width: 180px;
  display: block;
  margin: 0 auto;
  opacity: 0.9;
}

.plan-popular-alert {
  text-align: center;
  margin-top: 12px;
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  border: 1.5px dashed #F59E0B;
  border-radius: 12px;
  padding: 14px 16px 16px;
  animation: pulse-alert 2s ease-in-out infinite;
}

@keyframes pulse-alert {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}

.plan-popular-alert p {
  font-size: 0.82rem;
  color: #92400E;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.arrow-down-circle {
  width: 32px;
  height: 32px;
  background: var(--laranja);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: bounce-arrow 1s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── GUARANTEE ── */
.guarantee-section {
  background: var(--fundo);
  padding: 60px 0;
}

.guarantee-container {
  display: flex;
  align-items: center;
  gap: 36px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.guarantee-img-col { flex-shrink: 0; }

.guarantee-seal { width: 160px; }

.guarantee-seal-img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
  display: block;
}

.hotmart-seal-img {
  width: 240px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.92;
  filter: brightness(0) invert(1) opacity(0.85);
}

.guarantee-seal-placeholder {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--verde-cta);
  font-size: 0.72rem;
  font-weight: 700;
  gap: 4px;
  text-align: center;
  padding: 16px;
}

.guarantee-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--azul-escuro);
  margin-bottom: 14px;
}

.guarantee-content p {
  color: var(--texto-sec);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

.guarantee-risk {
  color: var(--verde-cta) !important;
  font-weight: 700 !important;
}

/* ── FAQ ── */
.faq-section {
  background: #fff;
  padding: 70px 0;
}

.faq-subtitle {
  text-align: center;
  color: var(--texto-sec);
  font-size: 0.95rem;
  margin-top: 8px;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--borda);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--azul);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--texto);
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--fundo); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--azul);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-answer p {
  color: var(--texto-sec);
  font-size: 0.88rem;
  line-height: 1.7;
  padding-bottom: 18px;
  border-top: 1px solid var(--borda);
  padding-top: 14px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--azul-escuro);
  padding: 36px 20px;
  text-align: center;
}

.footer-container p {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-disclaimer {
  margin-top: 10px;
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.35) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .headline { font-size: 1.6rem; }
  .section-title { font-size: 1.25rem; }
  .features-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .artist-list { columns: 1; }
  .guarantee-container { flex-direction: column; text-align: center; }
  .bonus-img { height: auto; }
  .cta-button { font-size: 0.88rem; padding: 16px 24px; }

  /* Deliverables mobile */
  .deliverables-box {
    padding: 24px 16px;
    border-radius: 14px;
  }
  .deliverables-img {
    max-width: 100%;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .deliverables-list li {
    font-size: 0.82rem;
    gap: 8px;
  }
  .deliverables-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }
}
