/* ============================================================
   PÁGINA DE VENDAS — MÉTODO ELEVA AÍ
   Mobile-First CSS — Design inspirado no BuffMuff
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  color: #071F2F;
  background: #fff;
  line-height: 1.6;
  -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;
}

ul, ol {
  list-style: none;
}

/* ---- CSS Variables ---- */
:root {
  --rose: #C85E7F;
  --rose-light: #FFF0F4;
  --rose-border: rgba(200, 94, 127, 0.3);
  --green: #5EA146;
  --green-hover: #4e8c3a;
  --green-shadow: rgba(94, 161, 70, 0.35);
  --dark: #071F2F;
  --gray: #4D5663;
  --light-pink: #FFF8FA;
  --white: #FFFFFF;
  --off-white: #FDFDFD;
  --red: #dc2626;

  --font-main: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-alt: 'Oxygen', sans-serif;

  --shadow-card: 0 0 18px -4px rgba(0,0,0,0.18),
                 0 0 39px -8px rgba(0,0,0,0.15),
                 0 0 56px -16px rgba(0,0,0,0.2);

  --container: 720px;
  --container-lg: 1060px;
  --radius: 8px;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  padding: 0 16px;
}

/* ---- Section Base ---- */
.section {
  padding: 48px 0;
}

.section--dark {
  background: var(--dark);
  color: #fff;
}

.section--pink {
  background: var(--light-pink);
}

.section--white {
  background: var(--white);
}

/* ---- Typography ---- */
.section-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.section--dark .section-title,
.section--dark .section-subtitle,
.section--dark p {
  color: #fff;
}

.text-center { text-align: center; }
.text-rose { color: var(--rose); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-gray { color: var(--gray); }

.fw-bold { font-weight: 700; }
.fw-800 { font-weight: 800; }


/* ---- Hero (BuffMuff-style: white bg, clean) ---- */
.hero {
  padding: 12px 0 48px;
  text-align: center;
  background: var(--white);
  color: var(--dark);
}

.hero .badge {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero .section-title {
  font-size: 1.55rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.hero .section-title .accent {
  color: var(--rose);
}

.hero .section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .watch-label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  text-align: center;
}

/* ---- Hero Content: Video + Kegel + Pricing — mobile order control ---- */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
  margin-top: 8px;
}

.hero-video {
  width: 100%;
  order: 1;
}

.hero-kegel {
  width: 100%;
  order: 2;
  text-align: left;
}

.hero-kegel .section-title {
  color: var(--dark);
}

.hero-kegel .section-subtitle {
  color: var(--dark);
}

.hero-pricing {
  width: 100%;
  order: 3;
}

.hero-pricing .pricing-card {
  max-width: 100%;
  margin: 0;
}

/* ---- CTA Button (Green, pulsing) ---- */
.cta-btn {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 18px 24px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 18px var(--green-shadow);
  animation: pulse 2.2s ease-in-out infinite;
  font-family: var(--font-main);
  line-height: 1.3;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cta-btn:hover {
  background: var(--green-hover);
  transform: scale(1.03);
}

.cta-btn__sub {
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.9;
  text-transform: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 18px var(--green-shadow); }
  50% { transform: scale(1.025); box-shadow: 0 6px 22px rgba(94, 161, 70, 0.5); }
}

/* ---- Step Cards (BuffMuff style) ---- */
.step-card {
  border: 3px solid var(--rose);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  background: #fff;
}

.step-card__header {
  background: var(--rose);
  color: #fff;
  padding: 12px 20px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
}

.step-card__body {
  padding: 20px;
}

.step-card__body h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card__body p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.step-card__img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  border-radius: 0;
}

/* ---- Pricing Card ---- */
.pricing-card {
  background: #fff;
  border: 3px solid var(--rose);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}

.pricing-card .date-badge {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-family: var(--font-alt);
}

.pricing-card .mockup-img {
  max-width: min(320px, 100%);
  margin: 0 auto 0;
}

.brand-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.brand-badge__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-badge__text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.pricing-card .price-row {
  margin-bottom: 4px;
}

.pricing-card .price-big {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--rose);
  font-family: var(--font-main);
}

.pricing-card .price-old {
  font-size: 1.1rem;
  color: var(--gray);
  text-decoration: line-through;
}

.pricing-card .price-save {
  font-size: 1rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card .price-access {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pricing-card .security-badge {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 16px;
}

.pricing-card .guarantee-badge {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 8px;
}

.pricing-card .payment-flags {
  max-width: 280px;
  margin: 16px auto 0;
}

/* ---- Bullet List with Checkmarks ---- */
.check-list {
  text-align: left;
}

.check-list li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
  font-size: 1.05rem;
}

.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---- Shame/Emotion List ---- */
.shame-list {
  text-align: left;
}

.shame-list li {
  padding: 6px 0;
  padding-left: 36px;
  position: relative;
  line-height: 1.5;
  font-size: 1.05rem;
}

.shame-list li::before {
  content: attr(data-icon);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* ---- Problem/Solution Cards ---- */
.problem-card {
  background: #fff;
  border: 2px solid var(--rose-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.problem-card__img {
  width: 100%;
}

.problem-card__body {
  padding: 20px;
}

.problem-card__body h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.problem-label {
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.solution-label {
  color: var(--green);
  font-weight: 700;
  display: block;
  margin-top: 12px;
  margin-bottom: 8px;
}

.problem-card__body ul {
  margin-left: 20px;
  list-style: disc;
}

.problem-card__body ul li {
  margin-bottom: 6px;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ---- Testimonial Cards ---- */
.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card {
  background: #fff;
  border: 2px solid var(--rose-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-card__text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--dark);
}

.testimonial-card__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rose);
}

.testimonial-card__meta {
  font-size: 0.8rem;
  color: var(--gray);
}

.testimonial-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  border: 2px solid var(--rose-border);
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Endorsement Cards ---- */
.endorsement-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.endorsement-card {
  text-align: center;
  background: #fff;
  border: 2px solid var(--rose-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.endorsement-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--rose);
}

.endorsement-card__quote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--dark);
}

.endorsement-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--rose);
}

.endorsement-card__title {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---- Founder Grid (Story + About side-by-side) ---- */
.founder-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.founder-story-col {
  order: 1;
}

.founder-about-col {
  order: 2;
}

.founder-photo {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  object-fit: cover;
  border: none;
  margin: 0 auto 24px;
  display: block;
}

.founder-story-col p {
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 0.95rem;
  color: var(--dark);
}

/* ---- About Card (BuffMuff style) ---- */
.founder-about-col {
  background: #fff;
  border: 3px solid var(--rose);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.founder-about-col h3.section-title {
  background: var(--rose);
  color: #fff !important;
  margin: 0;
  padding: 16px 20px;
  text-align: center;
  font-size: 1.2rem !important;
  border-radius: 0;
}

.founder-about-photo {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 20px auto 16px;
  border-radius: var(--radius);
}

.founder-about-col p,
.founder-about-col h4,
.founder-about-col ul {
  padding: 0 20px;
}

.founder-about-col ul.qualifications {
  padding: 0 20px 24px;
}

/* ---- About Creator ---- */
.about-creator .qualifications {
  margin-top: 16px;
}

.about-creator .qualifications li {
  padding: 4px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
}

.about-creator .qualifications li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--rose);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ---- Comparison ---- */
.comparison-img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius);
}

/* ---- Post Purchase Steps ---- */
.post-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.post-step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: var(--font-main);
}

.post-step__content h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.post-step__content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray);
}

/* ---- Media Logos (BR) ---- */
.media-label {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.media-logos-br {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  opacity: 0.65;
}

.media-logo {
  font-family: var(--font-alt);
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.media-logo--globo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
}

.media-logo--terra {
  font-family: var(--font-main);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.terra-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #444;
  color: #fff;
  border-radius: 4px;
  font-size: 0.6rem;
}

.media-logo--ig {
  font-family: var(--font-main);
}

.ig-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid #444;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  font-style: italic;
}

.media-logo--metropoles {
  font-family: var(--font-main);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* ---- Guarantee Section ---- */
.guarantee-badge-visual {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--green);
  background: #f0fdf4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-main);
}

.guarantee-badge-visual .days {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.guarantee-badge-visual .label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
}

.guarantee-title-badge {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 8px;
  margin-bottom: 24px;
}

/* ---- FAQ Accordion ---- */
.faq-item {
  border: 2px solid var(--rose-border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  text-align: left;
  gap: 12px;
}

.faq-question:hover {
  background: var(--rose-light);
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  fill: var(--rose);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 16px;
}

/* ---- Floating Bar ---- */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--dark);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.floating-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  flex-wrap: wrap;
}

.floating-bar.visible {
  transform: translateY(0);
}

.floating-bar .cta-btn {
  padding: 12px 32px;
  font-size: 14px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.floating-bar__info {
  color: #fff;
  font-size: 12px;
  text-align: center;
  font-family: var(--font-main);
}

.floating-bar__timer {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 4px;
}

.floating-bar__timer span {
  background: rgba(255,255,255,0.15);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-alt);
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 24px 16px;
  font-size: 0.8rem;
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

/* ---- Utility ---- */
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ============================================================
   RESPONSIVE — Tablet (640px+)
   ============================================================ */
@media (min-width: 640px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .hero .section-title {
    font-size: 1.65rem;
  }

  .cta-btn {
    font-size: 18px;
    padding: 20px 32px;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .endorsement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .endorsement-card__photo {
    width: 80px;
    height: 80px;
  }

  .endorsement-card__quote {
    font-size: 0.85rem;
  }

  .founder-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
}

/* ============================================================
   RESPONSIVE — Tablet+ (768px+) — Video + Pricing side-by-side
   ============================================================ */
@media (min-width: 768px) {
  .hero-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto auto;
    gap: 28px;
  }

  .hero-video {
    grid-column: 1;
    grid-row: 1;
    order: unset;
  }

  .hero-kegel {
    grid-column: 1;
    grid-row: 2;
    order: unset;
  }

  .hero-pricing {
    grid-column: 2;
    grid-row: 1 / 3;
    order: unset;
    position: static;
    align-self: start;
  }

  .hero-pricing .pricing-card {
    padding: 24px 16px;
  }

  .hero-pricing .pricing-card .mockup-img {
    max-width: 240px;
  }

  .hero-pricing .pricing-card .price-big {
    font-size: 1.8rem;
  }

  .hero-pricing .pricing-card .cta-btn {
    font-size: 14px;
    padding: 14px 20px;
  }
}

/* ============================================================
   RESPONSIVE — Desktop (992px+)
   ============================================================ */
@media (min-width: 992px) {
  .container {
    max-width: var(--container-lg);
  }

  .hero .container {
    max-width: var(--container-lg);
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero .section-title {
    font-size: 2.1rem;
  }

  .hero .section-subtitle {
    font-size: 1.05rem;
  }

  .hero-content {
    gap: 32px;
  }

  .hero-pricing .pricing-card .price-big {
    font-size: 2rem;
  }

  .pricing-card .price-big {
    font-size: 2.8rem;
  }

  .founder-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 32px;
    align-items: start;
  }

  .founder-story-col {
    order: unset;
  }

  .founder-about-col {
    order: unset;
    position: static;
  }

  .founder-photo {
    max-width: 100%;
    margin: 0 0 24px;
  }

}

/* ============================================================
   RESPONSIVE — Large (1200px+)
   ============================================================ */
@media (min-width: 1200px) {
  .container {
    max-width: 1060px;
  }

  .section-title {
    font-size: 2.25rem;
  }
}
