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

:root {
  --teal: #0d7377;
  --teal-dark: #085255;
  --teal-light: #14bdbd;
  --cream: #faf7f2;
  --cream-dark: #f0ebe1;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --text-dark: #1a1a2e;
  --text-mid: #3d4a5c;
  --text-light: #6b7a8d;
  --white: #ffffff;
  --danger: #e05a3a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* ── TOPBAR ── */
.topbar {
  background: var(--teal-dark);
  color: var(--cream);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.topbar span {
  color: var(--gold-light);
  font-weight: 600;
}

/* ── NAV ── */
nav {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid rgba(13, 115, 119, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

nav div.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav img {
  width: 60px;
}

.nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}

.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.3);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(
    135deg,
    var(--teal-dark) 0%,
    var(--teal) 50%,
    #1a9e9e 100%
  );
  padding: 90px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease forwards;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  max-width: 780px;
  margin: 0 auto 24px;
  animation: fadeUp 0.9s ease 0.1s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.3s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--text-dark);
  padding: 18px 42px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.4s both;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── SECTION BASE ── */
section {
  padding: 90px 40px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  position: relative;
  padding-left: 24px;
}

.section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: var(--teal);
}

.section-h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.section-h2 em {
  font-style: italic;
  color: var(--teal);
}

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 580px;
  font-weight: 300;
}

/* ── DOR (PAIN) ── */
.pain-section {
  background: var(--text-dark);
  padding: 80px 40px;
}

.pain-section .section-h2 {
  color: var(--white);
}

.pain-section .section-tag {
  color: var(--gold-light);
}

.pain-section .section-tag::before {
  background: var(--gold-light);
}

.pain-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.pain-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  flex: 1 1 280px;
}

.pain-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.pain-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.pain-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
}

/* ── SOLUÇÃO ── */
.solution-section {
  background: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.solution-visual {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 24px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.solution-visual::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.sol-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeIn 0.5s ease;
}

.sol-item:last-child {
  margin-bottom: 0;
}

.sol-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 2px;
}

.sol-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.sol-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-weight: 300;
}

/* ── BENEFÍCIOS ── */
.benefits-section {
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.benefit-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid rgba(13, 115, 119, 0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--teal);
  transition: width 0.4s ease;
}

.benefit-card:hover::after {
  width: 100%;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(13, 115, 119, 0.1);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(13, 115, 119, 0.12),
    rgba(13, 115, 119, 0.06)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  font-weight: 300;
}

/* ── PROVA SOCIAL ── */
.social-proof {
  background: linear-gradient(135deg, #f5f0e8 0%, var(--cream-dark) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.author-info span {
  font-size: 13px;
  color: var(--text-light);
}

/* ── PLANOS ── */
.pricing-section {
  background: var(--white);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 52px;
  align-items: start;
}

.plan-card {
  border-radius: 24px;
  padding: 40px 32px;
  border: 2px solid var(--cream-dark);
  transition: all 0.3s;
  background: var(--white);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-color: var(--teal);
  transform: scale(1.04);
  box-shadow: 0 24px 80px rgba(13, 115, 119, 0.35);
}

.plan-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 12px;
}

.plan-card.featured .plan-name {
  color: var(--gold-light);
}

.plan-price {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-card.featured .plan-price {
  color: var(--white);
}

.plan-price sup {
  font-size: 24px;
  vertical-align: super;
}

.plan-period {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.plan-card.featured .plan-period {
  color: rgba(255, 255, 255, 0.7);
}

.plan-economy {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.plan-card.featured .plan-economy {
  background: rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-card.featured .plan-features li {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.plan-features li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(13, 115, 119, 0.1);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.plan-card.featured .plan-features li::before {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
}

.plan-card label {
  display: flex;
  align-items: start;
  gap: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 20px;
  user-select: none;
  color: #3d4a5c;
}

.plan-card label a {
  color: #e8c97a;
  transition: filter 0.3s ease;
}

.plan-card label a:hover {
  filter: brightness(0.85);
}

.plan-card label input[type="checkbox"] {
  cursor: pointer;
  position: relative;
  top: 6px;
}

.plan-card:nth-of-type(even) span {
  color: #dae8e8;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-plan.disabled {
  cursor: not-allowed;
  background-color: slategray;
  filter: opacity(0.5);
}

.btn-plan-light {
  background: var(--teal);
  color: var(--white);
}

.btn-plan-light:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 24px rgba(13, 115, 119, 0.3);
}

.btn-plan-dark {
  background: var(--gold);
  color: var(--text-dark);
}

.btn-plan-dark:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

/* ── URGÊNCIA ── */
.urgency-section {
  background: linear-gradient(135deg, #e05a3a 0%, #c04428 100%);
  padding: 60px 40px;
  text-align: center;
}

.urgency-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--white);
  margin-bottom: 14px;
}

.urgency-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* ── GARANTIA ── */
.guarantee-section {
  background: var(--cream);
  padding: 70px 40px;
  text-align: center;
}

.guarantee-box {
  background: var(--white);
  border-radius: 24px;
  padding: 52px 48px;
  max-width: 680px;
  margin: 0 auto;
  border: 2px solid var(--cream-dark);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.guarantee-icon {
  font-size: 56px;
  margin-bottom: 24px;
}

.guarantee-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.guarantee-box p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ── FAQ ── */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 24px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  gap: 20px;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 115, 119, 0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

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

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(
    135deg,
    var(--teal-dark) 0%,
    var(--teal) 60%,
    #1aaeae 100%
  );
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.final-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4.5vw, 56px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.6;
}

/* ── FOOTER ── */
/* footer {
      background: var(--text-dark);
      padding: 48px 40px;
      text-align: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 13px;
      line-height: 1.8;
    }

    footer a {
      color: var(--gold-light);
      text-decoration: none;
    }

    footer strong {
      color: rgba(255, 255, 255, 0.8);
    } */

/* ── FLOATING BAR ── */
.floating-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 999;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.floating-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.floating-bar p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.floating-bar p strong {
  color: var(--gold-light);
}

.floating-bar a {
  background: var(--gold);
  color: var(--text-dark);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.floating-bar a:hover {
  background: var(--gold-light);
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
  }
}

.btn-primary {
  animation: pulse 2.5s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 640px) {
  section {
    padding: 64px 24px;
  }

  nav {
    padding: 16px 24px;
  }

  .plan-card.featured {
    transform: none;
  }

  .floating-bar {
    display: none;
  }

  .guarantee-box {
    padding: 36px 28px;
  }
}
