/* =============================================
   CALENDÁRIO PROMO – Landing Page Styles
   Palette: #E8527A (pink), #C73B60 (dark pink),
            #1a1a1a (black), #fff (white)
   ============================================= */

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

:root {
  --pink:       #E8527A;
  --pink-dark:  #C73B60;
  --pink-light: #f9d0dc;
  --pink-pale:  #fff0f4;
  --black:      #1a1a1a;
  --gray:       #555;
  --gray-light: #f5f5f5;
  --white:      #ffffff;
  --green-wa:   #25D366;
  --green-wa-d: #1ead54;
  --radius:     16px;
  --shadow:     0 8px 32px rgba(232,82,122,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- BUTTONS ---- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 50px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  letter-spacing: .3px;
}
.btn-whatsapp:hover {
  background: var(--green-wa-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.45);
}

.pulse {
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.35); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--pink-dark) 0%, var(--pink) 60%, #f07fa0 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 20px 80px;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  background: var(--white);
}
.s1 { width: 340px; height: 340px; top: -80px; left: -80px; }
.s2 { width: 220px; height: 220px; bottom: -60px; right: -40px; }
.s3 { width: 140px; height: 140px; top: 40%;  right: 8%; }

.hero-layout {
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
}

.logo-wrap {
  flex-shrink: 0;
}

.logo {
  width: 260px;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.35));
  display: block;
}

.hero-content {
  flex: 1;
}

@media (max-width: 680px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .logo {
    width: 180px;
  }
}

.badge {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.hero h1 .highlight {
  background: var(--black);
  padding: 2px 10px;
  border-radius: 6px;
  display: inline-block;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 32px;
  opacity: .94;
}

.hero-note {
  margin-top: 18px;
  font-size: .92rem;
  opacity: .88;
}

/* ---- SECTION TITLES ---- */
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  margin-bottom: 40px;
  color: var(--black);
}
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--pink);
  border-radius: 4px;
  margin: 10px auto 0;
}

/* ---- BENEFITS ---- */
.benefits {
  padding: 72px 20px;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.benefit-card {
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.benefit-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.benefit-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--pink-dark);
}
.benefit-card p {
  font-size: .9rem;
  color: var(--gray);
}

/* ---- CTA MID ---- */
.cta-mid {
  background: var(--black);
  padding: 72px 20px;
  text-align: center;
}
.cta-mid-inner { max-width: 600px; margin: 0 auto; }

.free-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.cta-mid h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-mid p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: 30px;
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 72px 20px;
  background: var(--gray-light);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 230px;
  border: 2px solid var(--pink-light);
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step h3 {
  font-size: .98rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--black);
}
.step p { font-size: .88rem; color: var(--gray); }

.step-arrow {
  font-size: 1.8rem;
  color: var(--pink);
  align-self: center;
  padding: 0 12px;
  font-weight: 900;
}

@media (max-width: 600px) {
  .step-arrow { display: none; }
  .steps { gap: 16px; }
  .step { max-width: 100%; }
}

/* ---- MARKETPLACES ---- */
.marketplaces {
  padding: 72px 20px;
  background: var(--white);
}
.marketplace-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.mp-item {
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
  transition: background .2s, transform .15s;
}
.mp-item:hover {
  background: var(--pink-light);
  transform: scale(1.05);
}

/* ---- INSTAGRAM ---- */
.instagram {
  padding: 56px 20px;
  background: linear-gradient(135deg, #f9d0dc 0%, #ffe0ea 100%);
}
.insta-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.insta-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.insta-text h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.insta-text p {
  font-size: .9rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.btn-instagram {
  display: inline-block;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  transition: opacity .2s, transform .2s;
}
.btn-instagram:hover { opacity: .9; transform: translateY(-2px); }

/* ---- FAQ ---- */
.faq {
  padding: 72px 20px;
  background: var(--gray-light);
}
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--pink);
  transition: transform .2s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 18px;
  font-size: .93rem;
  color: var(--gray);
  border-top: 1px solid var(--pink-light);
  padding-top: 14px;
}

/* ---- FINAL CTA ---- */
.final-cta {
  background: linear-gradient(145deg, var(--pink-dark) 0%, var(--pink) 100%);
  text-align: center;
  padding: 80px 20px;
  color: var(--white);
}
.final-cta h2 {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.final-cta p {
  font-size: 1.05rem;
  opacity: .9;
  margin-bottom: 32px;
}
.final-links {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .95rem;
}
.final-links a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-weight: 700;
  transition: opacity .2s;
}
.final-links a:hover { opacity: .7; }
.final-links span { opacity: .5; }

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  color: rgba(255,255,255,.55);
  text-align: center;
  padding: 28px 20px;
  font-size: .82rem;
  line-height: 1.8;
}
.footer-note { font-size: .76rem; opacity: .65; margin-top: 6px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 480px) {
  .hero { padding: 52px 16px 60px; }
  .logo { height: 72px; }
  .btn-whatsapp { font-size: 1rem; padding: 16px 24px; }
  .insta-card { flex-direction: column; text-align: center; }
}
