@charset "utf-8";

:root {
  --pink: #ec1883;
  --green: #3db347;
  --green-d: #34a03d;
  --navy: #0e1b3d;
  --light: #fdf6fb;
  --off: #f9f4fb;
  --text: #1a1a2e;
  --muted: #666;
  --font: 'Nunito', sans-serif;
  --head: 'Poppins', sans-serif;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: #ffffff;
  color: var(--text);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.site-header {
  background: #ffffff;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0e4f4;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo > img {
  width: min(290px, 72vw);
  max-height: 58px;
  object-fit: contain;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: #fce4f3;
  border-radius: 50%;
  border: 2px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.logo-text small {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  color: #aaaaaa;
  letter-spacing: 0.5px;
}

.sec {
  padding: 80px 24px;
}

.sec--light {
  background: var(--light);
}

.sec--navy {
  background: var(--navy);
  color: #ffffff;
}

.sec--no-top {
  padding-top: 0px;
}

.container {
  max-width: 740px;
  margin: 0px auto;
}

.container--wide {
  max-width: 980px;
  margin: 0px auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--navy);
  border-radius: 50px;
  font-family: var(--head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  padding: 5px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.pill--pink {
  border-color: var(--pink);
  color: var(--pink);
}

.pill--hero {
  border-color: var(--pink);
  color: var(--pink);
  margin-left: auto;
  margin-right: auto;
}

.pill-dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.pill--glass {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
}

.pill--update {
  display: inline-flex;
  background: #ffffff;
  border: 1.5px solid var(--pink);
  color: var(--pink);
  font-family: var(--head);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 5px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.h1 {
  font-family: var(--head);
  font-size: clamp(1.9rem, 5.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 14px;
}

.h1 em {
  font-style: normal;
  color: var(--pink);
}

.h2 {
  font-family: var(--head);
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}

.h2 em {
  font-style: normal;
  color: var(--pink);
}

.h2--left {
  text-align: left;
}

.h2--white {
  color: #ffffff;
}

.sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 38px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.sub--left {
  text-align: left;
  margin-left: 0px;
}

.sub--white {
  color: rgba(255, 255, 255, 0.75);
}

.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #ffffff;
  cursor: pointer;
  border: none;
  font-family: var(--head);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 18px 36px;
  border-radius: 50px;
  box-shadow: rgba(61, 179, 71, 0.45) 0px 8px 28px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  animation: 2.5s ease 0s infinite normal none running pulse-green;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::after {
  content: "";
  position: absolute;
  top: 0px;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: 3s ease 0s infinite normal none running shimmer;
}

@keyframes shimmer { 
  100% { left: 200%; }
}

.cta:hover {
  background: var(--green-d);
  transform: translateY(-3px) scale(1.02);
  box-shadow: rgba(61, 179, 71, 0.55) 0px 14px 36px;
}

@keyframes pulse-green { 
  0%, 100% { box-shadow: rgba(61, 179, 71, 0.45) 0px 8px 28px; }
  50% { box-shadow: rgba(61, 179, 71, 0.72) 0px 8px 48px; }
}

.cta-note {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: none;
  margin-top: 5px;
  letter-spacing: 0px;
}

.checks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 20px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--navy);
}

.check-dot {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero {
  background: #ffffff;
  padding: 48px 24px 56px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 0px;
  max-width: 980px;
  margin: 0px auto;
}

.hero-left {
  order: 0;
  margin-bottom: 16px;
  text-align: center;
}

.hero-video {
  order: 1;
  margin-bottom: 20px;
}

.hero-cta-block {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 32px 40px;
  }
  .hero-left {
    grid-area: 1 / 1;
    order: unset;
    margin-bottom: 0px;
    text-align: left;
  }
  .hero-left .pill--hero {
    margin-left: 0;
  }
  .hero-left .hero-subtitle {
    margin-left: 0;
    text-align: left;
  }
  .hero-video {
    grid-area: 1 / 2 / span 2;
    order: unset;
    margin-bottom: 0px;
    align-self: center;
  }
  .hero-cta-block {
    grid-area: 2 / 1;
    order: unset;
    align-items: flex-start;
    text-align: left;
  }
  .hero-cta-block .checks {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-text-inner {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-text-inner {
    align-items: flex-start;
    text-align: left;
  }
}

.hero-subtitle {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle em {
  font-style: normal;
  color: var(--pink);
  font-weight: 700;
}

@keyframes pulsatePlay { 
  0% { transform: scale(0.95); box-shadow: rgba(61, 179, 71, 0.7) 0px 0px 0px 0px; }
  70% { transform: scale(1); box-shadow: rgba(61, 179, 71, 0) 0px 0px 0px 16px; }
  100% { transform: scale(0.95); box-shadow: rgba(61, 179, 71, 0) 0px 0px 0px 0px; }
}

.pulsating {
  animation: 1.6s ease 0s infinite normal none running pulsatePlay;
}

.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 24px 64px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  background: #000000;
  width: 100%;
}

.video-poster {
  position: relative;
  cursor: pointer;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.play-overlay {
  position: absolute;
  inset: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
}

.play-btn {
  width: 76px;
  height: 76px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(61, 179, 71, 0.7) 0px 0px 0px 0px;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: scale(1.08);
}

.trust-strip {
  background: #ffffff;
  padding: 28px 24px 40px;
  border-top: 1px solid #f0e4f4;
  border-bottom: 1px solid #f0e4f4;
}

.trust-inner {
  max-width: 680px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: #fce4f3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card strong {
  display: block;
  font-family: var(--head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.trust-card span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}

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

.why-intro p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-top: 10px;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(236, 24, 131, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card strong {
  display: block;
  font-family: var(--head);
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.why-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.ebooks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.ebook-card {
  text-align: center;
  transition: transform 0.3s;
}

.ebook-card:hover {
  transform: translateY(-6px);
}

.ebook-card img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.ebook-label {
  margin-top: 9px;
  font-family: var(--head);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.gabarito-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f9f9f9;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.gabarito-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: rgba(61, 179, 71, 0.25) 0px 2px 8px;
  border: 1.5px solid #b2e8b4;
}

.gabarito-text strong {
  font-family: var(--head);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.gabarito-text p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
}

.update-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.update-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 280px;
  width: 100%;
}

.bonus-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.bonus-feat-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid #f8d7ec;
  box-shadow: var(--shadow);
  position: relative;
}

.bonus-feat-card .best-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pink);
  color: #ffffff;
  font-family: var(--head);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}

.bonus-feat-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.bonus-feat-body {
  background: linear-gradient(135deg, #fff8fd 0%, #ffffff 100%);
  padding: 16px 18px;
}

.bonus-feat-body .bnum {
  font-family: var(--head);
  font-size: 2rem;
  font-weight: 900;
  color: #f0d0ee;
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-feat-body h4 {
  font-family: var(--head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.bonus-feat-body p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
}

.bonus-tag {
  display: inline-block;
  background: #edfbee;
  color: var(--green);
  border: 1px solid #b2e8b4;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--head);
  padding: 3px 10px;
  margin-top: 8px;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.bonus-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0px;
  border-bottom: 1px solid #f0e8f6;
}

.bonus-row:first-child {
  border-top: 1px solid #f0e8f6;
}

.bonus-row-img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.bonus-row-num {
  font-family: var(--head);
  font-size: 2rem;
  font-weight: 900;
  color: #f0d0ee;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
  line-height: 1;
}

.bonus-row-body {
  flex: 1 1 0%;
  min-width: 0px;
}

.bonus-row-body h4 {
  font-family: var(--head);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.bonus-row-body p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
}

.carousel-outer {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0px 4px;
}

.carousel-slide img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
  max-height: 420px;
}

.testimonial-card {
  width: 100%;
  min-height: 390px;
  padding: 34px 32px 30px;
  border: 1px solid #f1e5ed;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff 0%, #fff8fc 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: "“";
  position: absolute;
  right: 24px;
  top: 58px;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(236, 24, 131, .08);
}

.testimonial-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f3dce9;
  position: relative;
  z-index: 1;
}

.testimonial-brand img {
  width: 165px;
  height: 48px;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}

.testimonial-brand span {
  color: var(--green-d);
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}

.testimonial-card blockquote {
  margin: 34px 0 24px;
  color: var(--navy);
  font-family: var(--head);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.testimonial-card blockquote::before {
  content: "★★★★★";
  display: block;
  color: #f5b800;
  font-size: .9rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testimonial-person {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  border-left: 4px solid var(--pink);
  position: relative;
  z-index: 1;
}

.testimonial-person strong {
  color: var(--navy);
  font-family: var(--head);
  font-size: .95rem;
}

.testimonial-person span {
  color: var(--muted);
  font-size: .8rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--green);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 14px;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--green-d);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 6px;
}

.carousel-btn.next {
  right: 6px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dddddd;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s;
  padding: 0px;
}

.carousel-dot.active {
  background: var(--pink);
  transform: scale(1.3);
}

.carousel--dual .carousel-slide {
  flex: 0 0 50%;
  padding: 0px 8px;
}

.offer-box {
  background: #ffffff;
  color: var(--navy);
  border-radius: 24px;
  max-width: 520px;
  margin: 0px auto 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.22) 0px 20px 48px;
  border: none;
}

.offer-header {
  background: var(--pink);
  color: #ffffff;
  padding: 22px 20px;
}

.offer-header h3 {
  font-family: var(--head);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.offer-header p {
  font-family: var(--head);
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffe6f3;
  margin: 0px;
}

.offer-body {
  padding: 32px 24px;
}

.offer-comparison {
  background: #f5f5f7;
  border-radius: 16px;
  padding: 18px 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #444444;
  font-weight: 600;
}

.offer-comparison strong {
  color: var(--navy);
}

.offer-arrow {
  font-size: 2.2rem;
  color: var(--pink);
  margin: 12px 0px;
  font-weight: 900;
  animation: 1.5s ease 0s infinite normal none running bounceArrow;
}

@keyframes bounceArrow { 
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(6px); }
}

.offer-price-section {
  margin-bottom: 24px;
}

.price-por-apenas {
  display: block;
  font-size: 0.95rem;
  color: #666666;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.price-old {
  font-size: 1.15rem;
  color: #888888;
  font-weight: 700;
}

.price-new {
  font-family: var(--head);
  color: var(--navy);
  display: flex;
  align-items: flex-start;
}

.price-currency {
  font-size: 1.8rem;
  font-weight: 900;
  margin-top: 8px;
}

.price-integer {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 0.9;
}

.price-decimals {
  font-size: 1.8rem;
  font-weight: 900;
  margin-top: 8px;
}

.offer-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  align-items: flex-start;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.offer-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
}

.check-icon-circle {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.offer-disclaimer {
  display: block;
  font-size: 0.72rem;
  color: #888888;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.offer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
}

.offer-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #666666;
}

.guarantee-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  text-align: center;
}

.guarantee-img {
  width: 180px;
}

.guarantee-img img {
  border-radius: var(--radius);
}

.guarantee-text h3 {
  font-family: var(--head);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.guarantee-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.faq-item {
  border: 1.5px solid #eeeeee;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  padding: 18px 20px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  user-select: none;
  transition: background 0.2s;
}

.faq-q:hover {
  background: #fafafa;
}

.faq-q.open {
  background: #fff0f7;
  color: var(--pink);
}

.faq-chev {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-chev.open {
  transform: rotate(180deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0px;
  transition: max-height 0.35s ease-in-out;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.faq-a-inner {
  padding: 0px 20px 18px;
}

.footer {
  background: #09122b;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 44px 24px;
  font-size: 0.84rem;
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-disclaimer strong {
  color: #ff7bc1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ec1883;
  text-decoration: underline;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.25);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* ─── MODAIS FLUTUANTES (POLÍTICAS) ─── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 14, 33, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  color: #222222;
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  padding: 20px 24px;
  background: var(--navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--pink);
}

.modal-header h3 {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.modal-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}

.modal-close:hover {
  opacity: 1;
  transform: scale(1.15);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #444444;
}

.modal-body h4 {
  font-family: var(--head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin: 18px 0 6px 0;
}

.modal-body p {
  margin-bottom: 12px;
}

.divider {
  height: 6px;
  background: linear-gradient(90deg, var(--pink), #ff6fce, var(--pink));
}

@media (min-width: 640px) {
  .ebooks-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-featured { grid-template-columns: 1fr 1fr; }
  .update-wrap { flex-direction: row; align-items: center; }
  .update-img { order: -1; }
  .why-wrap { flex-direction: row; gap: 44px; }
  .why-intro { flex: 1 1 0%; }
  .why-cards { flex: 1 1 0%; }
  .guarantee-wrap { flex-direction: row; text-align: left; }
  .guarantee-text { text-align: left; }
  .trust-inner { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  .ebooks-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 639px) {
  .sec { padding: 40px 20px; }
  .carousel--dual .carousel-slide { flex: 0 0 100%; }
  .testimonial-card { min-height: 420px; padding: 28px 24px 26px; }
  .testimonial-brand { align-items: flex-start; flex-direction: column; }
  .testimonial-brand img { width: 150px; height: 44px; }
  .testimonial-card blockquote { font-size: 1rem; margin-top: 26px; }
  .bonus-row-img { width: 60px; height: 60px; }
  .hero-left { order: 0; }
  .hero-video { order: 1; margin-bottom: 20px; }
  .hero-cta-block { order: 2; }
}
