/* =========================================================
   50 Dinâmicas para Retiros Holísticos
   Website desenvolvido por Segundo Almeida
   ========================================================= */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #f8f2ee;
  background: #2f1742;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* VARIABLES */
:root {
  --purple-dark: #2f1742;
  --purple-medium: #5e2b7a;
  --rose: #c08aa3;
  --beige: #e8d8d1;
  --soft-bg: #f8f2ee;
  --white: #ffffff;
  --gold: #d9b76f;

  --title-font: "Cormorant Garamond", serif;
  --text-font: "Montserrat", sans-serif;

  --container: 1180px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;

  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-glow: 0 0 45px rgba(192, 138, 163, 0.35);
}

/* GLOBAL */
.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section-padding {
  padding: 110px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(217, 183, 111, 0.4);
  border-radius: 999px;
  color: #f4d99d;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

h1,
h2,
h3 {
  font-family: var(--title-font);
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
}

p {
  color: rgba(248, 242, 238, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading p {
  max-width: 690px;
  margin: 18px auto 0;
}

.btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  border: 0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  color: #2f1742;
  background: linear-gradient(135deg, #f3d08b, #c08aa3, #e8d8d1);
  box-shadow: 0 18px 45px rgba(192, 138, 163, 0.35);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, #5e2b7a, #c08aa3);
  box-shadow: 0 18px 45px rgba(94, 43, 122, 0.35);
}

.btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.05);
  box-shadow: 0 24px 65px rgba(192, 138, 163, 0.45);
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: rgba(47, 23, 66, 0.72);
  border-bottom: 1px solid rgba(232, 216, 209, 0.12);
  backdrop-filter: blur(18px);
}

.header-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #fff;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: rgba(248, 242, 238, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #f4d99d;
}

.header-cta {
  padding: 13px 20px;
  border-radius: 999px;
  color: #2f1742;
  background: #f4d99d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(232, 216, 209, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.mobile-nav {
  display: none;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 138px 0 80px;
  background-image: url("../assets/images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% -12%;
  height: 45%;
  background: radial-gradient(
    circle,
    rgba(192, 138, 163, 0.42),
    transparent 68%
  );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(47, 23, 66, 0.95) 0%,
      rgba(47, 23, 66, 0.74) 46%,
      rgba(47, 23, 66, 0.45) 100%
    ),
    radial-gradient(
      circle at 75% 45%,
      rgba(192, 138, 163, 0.45),
      transparent 35%
    );
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 52px;
}

.hero-description {
  max-width: 650px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px 18px;
  margin: 30px 0 34px;
}

.hero-bullets span {
  position: relative;
  padding-left: 26px;
  color: rgba(248, 242, 238, 0.9);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-bullets span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f4d99d;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.secure-note,
.final-note {
  color: rgba(248, 242, 238, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
  max-width: 560px;
  justify-self: end;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(217, 183, 111, 0.24);
  filter: blur(55px);
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  animation: floatImage 6s ease-in-out infinite;
}

/* PAIN */
.pain-section {
  position: relative;
  background:
    linear-gradient(rgba(47, 23, 66, 0.92), rgba(47, 23, 66, 0.95)),
    url("../assets/images/texture-soft.webp");
  background-size: cover;
  background-position: center;
}

.cards-grid,
.bonus-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
}

.pain-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  min-height: 260px;
  padding: 32px 26px;
  border: 1px solid rgba(232, 216, 209, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 183, 111, 0.45);
  background: rgba(255, 255, 255, 0.11);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: #f4d99d;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.info-card h3 {
  margin-bottom: 14px;
}

/* TRANSFORMATION */
.transformation-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(192, 138, 163, 0.32),
      transparent 34%
    ),
    linear-gradient(135deg, #2f1742 0%, #5e2b7a 100%);
}

.two-columns {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.section-copy p {
  max-width: 600px;
  margin: 22px 0 34px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefit-item {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 22px 22px 22px 54px;
  border: 1px solid rgba(232, 216, 209, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.benefit-item::before {
  content: "✓";
  position: absolute;
  left: 24px;
  color: #f4d99d;
}

/* PRODUCT */
.product-section {
  background:
    linear-gradient(rgba(248, 242, 238, 0.94), rgba(248, 242, 238, 0.94)),
    url("../assets/images/texture-alt.webp");
  background-size: cover;
  color: var(--purple-dark);
}

.product-section p,
.product-section .section-tag {
  color: rgba(47, 23, 66, 0.76);
}

.product-section .section-tag {
  background: rgba(94, 43, 122, 0.08);
  border-color: rgba(94, 43, 122, 0.18);
}

.product-container {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 62px;
  align-items: center;
}

.product-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(47, 23, 66, 0.24);
}

.product-content p {
  max-width: 620px;
  margin: 22px 0 30px;
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.receive-grid span {
  padding: 18px 18px;
  border-radius: 18px;
  color: #2f1742;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(94, 43, 122, 0.12);
  font-weight: 700;
}

/* BONUS */
.bonus-section {
  background:
    linear-gradient(rgba(47, 23, 66, 0.94), rgba(47, 23, 66, 0.97)),
    url("../assets/images/texture-soft.webp");
  background-size: cover;
  background-position: center;
}

.bonus-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bonus-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 216, 209, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 183, 111, 0.45);
}

.bonus-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.bonus-card-content {
  padding: 24px;
}

.bonus-card-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: #f4d99d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bonus-card-content h3 {
  margin-bottom: 12px;
}

.bonus-card-content p {
  font-size: 0.92rem;
}

.center-button {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

/* TESTIMONIALS */
.testimonials-section {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(217, 183, 111, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #5e2b7a 0%, #2f1742 70%);
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 216, 209, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.stars {
  margin-bottom: 18px;
  color: #f4d99d;
  letter-spacing: 0.08em;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}

.testimonial-author strong {
  color: #fff;
}

.testimonial-author span {
  color: rgba(248, 242, 238, 0.7);
  font-size: 0.9rem;
}

/* GUARANTEE */
.guarantee-section {
  background: var(--soft-bg);
  color: var(--purple-dark);
}

.guarantee-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.88),
      rgba(232, 216, 209, 0.72)
    ),
    url("../assets/images/texture-alt.webp");
  background-size: cover;
  box-shadow: 0 30px 90px rgba(47, 23, 66, 0.16);
}

.guarantee-card p {
  max-width: 720px;
  color: rgba(47, 23, 66, 0.72);
}

.guarantee-card .section-tag {
  color: #5e2b7a;
  background: rgba(94, 43, 122, 0.08);
  border-color: rgba(94, 43, 122, 0.18);
}

/* FAQ */
.faq-section {
  background:
    linear-gradient(rgba(47, 23, 66, 0.95), rgba(47, 23, 66, 0.95)),
    url("../assets/images/texture-soft.webp");
  background-size: cover;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(232, 216, 209, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(16px);
}

.faq-question {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: #f4d99d;
  font-size: 1.5rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
}

.faq-item.active .faq-answer {
  max-height: 160px;
}

/* FINAL CTA */
.final-cta {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background-image: url("../assets/images/final-cta-bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(47, 23, 66, 0.94), rgba(47, 23, 66, 0.72)),
    radial-gradient(
      circle at center,
      rgba(217, 183, 111, 0.16),
      transparent 42%
    );
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: left;
}

.final-cta-content p {
  max-width: 640px;
  margin: 22px 0 34px;
}

.final-note {
  display: block;
  margin-top: 18px;
}

/* FOOTER */
.site-footer {
  padding: 40px 0;
  background: #1f0f2c;
  border-top: 1px solid rgba(232, 216, 209, 0.1);
}

.footer-container {
  display: grid;
  gap: 18px;
  text-align: center;
}

.footer-container p,
.footer-links a {
  color: rgba(248, 242, 238, 0.7);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover,
.developer-credit {
  color: #f4d99d;
}

.developer-credit {
  font-weight: 700;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(232, 216, 209, 0.14);
    border-radius: 22px;
    background: rgba(47, 23, 66, 0.96);
    box-shadow: var(--shadow-soft);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.07);
  }

  .hero-container,
  .product-container,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .hero-container {
    gap: 42px;
    text-align: center;
  }

  .hero-content {
    display: grid;
    justify-items: center;
  }

  .hero-bullets {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-image-wrapper {
    justify-self: center;
    max-width: 620px;
  }

  .pain-grid,
  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-image {
    max-width: 650px;
    margin: 0 auto;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .guarantee-card p {
    margin: 0 auto;
  }

  .final-cta-content {
    text-align: center;
    margin: 0 auto;
  }

  .final-cta-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section-padding {
    padding: 82px 0;
  }

  .header-container {
    min-height: 74px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .mobile-nav {
    top: 74px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 70px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(47, 23, 66, 0.96) 0%,
        rgba(47, 23, 66, 0.82) 54%,
        rgba(47, 23, 66, 0.92) 100%
      ),
      radial-gradient(
        circle at 50% 35%,
        rgba(192, 138, 163, 0.35),
        transparent 38%
      );
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.35rem);
  }

  p {
    font-size: 0.96rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-bullets {
    width: 100%;
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 28px 0 30px;
  }

  .btn {
    width: 100%;
    max-width: 430px;
    min-height: 60px;
    padding: 0 22px;
  }

  .hero-image-wrapper {
    max-width: 440px;
  }

  .hero-image {
    border-radius: 24px;
  }

  .pain-grid,
  .bonus-grid,
  .testimonial-grid,
  .benefits-list,
  .receive-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .bonus-card img {
    aspect-ratio: 16 / 11;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .guarantee-card {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .faq-question {
    min-height: 68px;
    padding: 0 18px;
    font-size: 0.94rem;
  }

  .faq-answer p {
    padding: 0 18px 22px;
  }

  .final-cta {
    min-height: auto;
    padding: 92px 0;
  }

  .footer-links {
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-tag {
    font-size: 0.68rem;
    padding: 8px 12px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .bonus-card-content,
  .info-card {
    padding: 24px 20px;
  }
}
/* =========================================
   CORREÇÃO DEFINITIVA DOS CARDS BONUS MOBILE
========================================= */

.bonus-card img {
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  display: block;
  background: #2f1742;
}
/* =========================================
   REFINAMENTOS SOLICITADOS PELO CLIENTE
========================================= */

/* BOTÃO CTA MAIS CHAMATIVO */

.btn-primary {
  color: #2f1742 !important;
  background: linear-gradient(
    135deg,
    #f7d98b 0%,
    #f4c96b 50%,
    #e7b857 100%
  ) !important;

  box-shadow: 0 18px 45px rgba(244, 201, 107, 0.45) !important;
}

/* TEXO DOS BÔNUS MAIOR */

.bonus-card-content p {
  font-size: 1rem !important;
  line-height: 1.75 !important;
}
/* =========================================
   REFINAMENTOS SOLICITADOS PELO CLIENTE
========================================= */

/* TODOS OS BOTÕES MAIS CHAMATIVOS */

.btn-primary,
.btn-secondary,
.header-cta {
  color: #2f1742 !important;

  background: linear-gradient(
    135deg,
    #f7d98b 0%,
    #f4c96b 50%,
    #e7b857 100%
  ) !important;

  box-shadow: 0 18px 45px rgba(244, 201, 107, 0.45) !important;
}

/* HOVER DOS BOTÕES */

.btn-primary:hover,
.btn-secondary:hover,
.header-cta:hover {
  transform: translateY(-4px);
  filter: brightness(1.05);
  box-shadow: 0 24px 65px rgba(244, 201, 107, 0.6) !important;
}

/* TEXO DOS BÔNUS MAIOR */

.bonus-card-content p {
  font-size: 1rem !important;
  line-height: 1.75 !important;
}
/* =========================================
   DESCRIÇÃO DOS CARDS DE BÔNUS MAIOR
========================================= */

.bonus-card-content p {
  font-size: 1.08rem !important;
  line-height: 1.9 !important;
}
/* =========================================
   DESCRIÇÃO DOS CARDS DE BÔNUS AUMENTADA
========================================= */

.bonus-card-content p {
  font-size: 1.16rem !important;
  line-height: 1.95 !important;
}
/* =========================================
   MOCKUP ABAIXO DA HEADLINE
========================================= */

.hero-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.hero-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.hero-image-wrapper {
  order: 2 !important;
  margin: 35px 0 !important;
  max-width: 620px !important;
}

.hero-description {
  order: 3 !important;
}

.hero-bullets {
  order: 4 !important;
}

.hero-actions {
  order: 5 !important;
}
/* =========================================
   AJUSTE DE ESPAÇAMENTO HERO MOCKUP
========================================= */

.hero-image-wrapper {
  margin-top: 10px !important;
}

.hero-actions {
  margin-bottom: 10px !important;
}
/* ===== AJUSTES FINOS ===== */

.hero-container {
  gap: 28px !important;
}

.hero-image-wrapper {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.btn,
.header-cta {
  background: linear-gradient(
    135deg,
    #f9dc8a 0%,
    #f4c85f 48%,
    #dca93f 100%
  ) !important;

  color: #2f1742 !important;
}

.bonus-card-content p {
  font-size: 1.16rem !important;
  line-height: 1.95 !important;
}
/* =========================================
   AJUSTES CLIENTE
========================================= */

/* MOCKUP COMPLETO */

.hero-image-wrapper {
  max-width: 760px !important;
  overflow: visible !important;
}

.hero-image {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* BOTÕES AMARELO CLARO */

.btn,
.btn-primary,
.btn-secondary,
.header-cta {
  background: linear-gradient(
    135deg,
    #fff4b8 0%,
    #ffe680 45%,
    #ffd95c 100%
  ) !important;

  color: #2f1742 !important;

  box-shadow: 0 16px 40px rgba(255, 230, 128, 0.45) !important;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.header-cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 22px 60px rgba(255, 230, 128, 0.6) !important;
}
/* =========================================
   MOCKUP MOBILE MAIS IMPACTANTE
========================================= */

@media (max-width: 760px) {
  .hero-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 18px !important;
  }

  .hero-image {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 24px !important;
    object-fit: contain !important;
  }
}
/* =========================================
   MOCKUP MOBILE IGUAL AO DESKTOP
========================================= */

@media (max-width: 760px) {
  .hero-image-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .hero-image {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}
/* =========================================
   RESPIRO ABAIXO DO MOCKUP MOBILE
========================================= */

@media (max-width: 760px) {
  .hero-image-wrapper {
    margin-bottom: 28px !important;
  }
}
/* =========================================
   AJUSTE HERO MOBILE CLIENTE
========================================= */

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.9rem, 10vw, 4.2rem) !important;
    text-align: center !important;
    line-height: 1.08 !important;
  }

  .hero-content {
    text-align: center !important;
    align-items: center !important;
  }

  .hero-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-bullets {
    text-align: left !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* =========================================
   HERO MOBILE PROFISSIONAL
========================================= */

@media (max-width: 760px) {
  .hero-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  h1 {
    width: 100% !important;
    max-width: 340px !important;

    font-size: clamp(2.45rem, 9vw, 3.4rem) !important;

    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;

    text-align: center !important;

    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-description {
    max-width: 330px !important;

    text-align: center !important;

    margin-left: auto !important;
    margin-right: auto !important;

    font-size: 1rem !important;
    line-height: 1.8 !important;
  }

  .hero-bullets {
    width: fit-content !important;

    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions {
    width: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .btn {
    max-width: 320px !important;
  }
}
/* =========================================
   REFINAMENTO FINAL DESIGN + RESPONSIVO
========================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

.btn,
.btn-primary,
.btn-secondary,
.header-cta {
  background: linear-gradient(
    135deg,
    #fff6c7 0%,
    #ffe98f 45%,
    #ffd966 100%
  ) !important;
  color: #2f1742 !important;
  box-shadow: 0 16px 42px rgba(255, 233, 143, 0.42) !important;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.header-cta:hover {
  filter: brightness(1.04) !important;
  box-shadow: 0 22px 64px rgba(255, 233, 143, 0.58) !important;
}

@media (max-width: 760px) {
  .hero-content {
    text-align: center !important;
    align-items: center !important;
  }

  .hero h1 {
    max-width: 335px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(2.25rem, 8.8vw, 3.25rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em !important;
    text-align: center !important;
  }

  .hero-description {
    max-width: 335px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    font-size: 0.96rem !important;
    line-height: 1.75 !important;
  }

  .hero-bullets {
    width: fit-content !important;
    max-width: 335px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-image-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-bottom: 34px !important;
    overflow: hidden !important;
  }

  .hero-image {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }

  .info-card,
  .bonus-card,
  .testimonial-card,
  .faq-item {
    border-radius: 22px !important;
  }

  .bonus-card-content {
    padding: 26px 22px !important;
  }

  .bonus-card-content p {
    font-size: 1.06rem !important;
    line-height: 1.85 !important;
  }

  .faq-question {
    line-height: 1.4 !important;
  }
}
/* =========================================
   BOTÕES AMARELO CLARO DEFINITIVO
========================================= */

button,
.btn,
.btn-primary,
.btn-secondary,
.header-cta,
a.btn,
a.btn-primary,
a.btn-secondary {
  background: linear-gradient(
    135deg,
    #fff6c7 0%,
    #ffe98f 45%,
    #ffd966 100%
  ) !important;

  color: #2f1742 !important;

  border: none !important;

  box-shadow: 0 16px 42px rgba(255, 233, 143, 0.42) !important;
}

button:hover,
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.header-cta:hover,
a.btn:hover,
a.btn-primary:hover,
a.btn-secondary:hover {
  filter: brightness(1.05) !important;

  box-shadow: 0 22px 64px rgba(255, 233, 143, 0.58) !important;
}
/* =========================================
   BOTÕES DE COMPRA AMARELO CLARO
========================================= */

.btn-primary,
.header-cta {
  background: linear-gradient(
    135deg,
    #fff6c7 0%,
    #ffe98f 45%,
    #ffd966 100%
  ) !important;

  color: #2f1742 !important;

  border: none !important;

  box-shadow: 0 16px 42px rgba(255, 233, 143, 0.42) !important;
}

.btn-primary:hover,
.header-cta:hover {
  filter: brightness(1.05) !important;

  box-shadow: 0 22px 64px rgba(255, 233, 143, 0.58) !important;
}
/* =========================================
   CENTRALIZAR BOTÕES DE COMPRA MOBILE
========================================= */

@media (max-width: 760px) {
  .hero-actions,
  .center-button,
  .final-cta-content,
  .guarantee-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .btn-primary,
  .header-cta {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* =========================================
   IMAGEM FULL WIDTH MOBILE
========================================= */

@media (max-width: 760px) {
  .product-image-wrapper,
  .hero-image-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    padding: 0 !important;

    overflow: hidden !important;
  }

  .product-image,
  .hero-image {
    width: 100vw !important;
    max-width: 100vw !important;

    display: block !important;

    border-radius: 0 !important;

    object-fit: cover !important;
  }
}
/* =========================================
   AMARELO SOMENTE NOS BOTÕES DE COMPRA
========================================= */

/* REMOVE AMARELO DOS OUTROS */

.btn-secondary,
.faq-button,
.menu-button,
button:not(.btn-primary):not(.header-cta) {
  background: initial !important;
  box-shadow: none !important;
}

/* BOTÕES DE COMPRA */

.btn-primary,
.header-cta {
  background: linear-gradient(
    135deg,
    #fff6c7 0%,
    #ffe98f 45%,
    #ffd966 100%
  ) !important;

  color: #2f1742 !important;

  border: none !important;

  box-shadow: 0 16px 42px rgba(255, 233, 143, 0.42) !important;
}

.btn-primary:hover,
.header-cta:hover {
  filter: brightness(1.05) !important;

  box-shadow: 0 22px 64px rgba(255, 233, 143, 0.58) !important;
}
/* =========================================
   BOTÕES SECUNDÁRIOS REFINADOS
========================================= */

.btn-secondary,
.faq-button,
.menu-button,
.accordion-button,
.tag-button {
  background: linear-gradient(
    135deg,
    rgba(95, 45, 130, 0.92) 0%,
    rgba(74, 28, 110, 0.96) 100%
  ) !important;

  color: #f8e9ff !important;

  border: 1px solid rgba(255, 215, 140, 0.22) !important;

  box-shadow: 0 10px 28px rgba(47, 23, 66, 0.35) !important;
}

.btn-secondary:hover,
.faq-button:hover,
.menu-button:hover,
.accordion-button:hover,
.tag-button:hover {
  filter: brightness(1.08) !important;

  border-color: rgba(255, 215, 140, 0.4) !important;

  box-shadow: 0 16px 40px rgba(47, 23, 66, 0.48) !important;
}
/* =========================================
   FAQ DESTACADO E LEGÍVEL
========================================= */

.faq-item {
  background: rgba(82, 44, 112, 0.88) !important;

  border: 1px solid rgba(255, 220, 150, 0.18) !important;

  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22) !important;
}

.faq-question {
  color: #fff7f0 !important;

  font-weight: 700 !important;

  font-size: 1.08rem !important;
}

.faq-question span,
.faq-question p,
.faq-question h3 {
  color: #fff7f0 !important;
}

.faq-icon {
  color: #ffe082 !important;

  font-size: 1.5rem !important;

  font-weight: 700 !important;
}

.faq-item:hover {
  background: rgba(95, 50, 128, 0.96) !important;

  border-color: rgba(255, 220, 150, 0.35) !important;

  transform: translateY(-2px);
}
/* =========================================
   CENTRALIZAR TODAS AS IMAGENS
========================================= */

img,
.hero-image,
.product-image,
.bonus-card img,
.mockup-image {
  display: block !important;

  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-image-wrapper,
.product-image-wrapper,
.bonus-card-image,
.image-container {
  display: flex !important;

  justify-content: center !important;

  align-items: center !important;
}
/* =========================================
   CENTRALIZAÇÃO PERFEITA DAS IMAGENS
========================================= */

.product-image-wrapper,
.hero-image-wrapper {
  width: 100% !important;

  display: flex !important;

  justify-content: center !important;

  align-items: center !important;

  margin-left: auto !important;
  margin-right: auto !important;
}

.product-image,
.hero-image {
  display: block !important;

  margin-left: auto !important;
  margin-right: auto !important;
}
/* =========================================
   ALINHAMENTO REAL DAS IMAGENS MOBILE
========================================= */

@media (max-width: 760px) {
  .product-image-wrapper,
  .hero-image-wrapper {
    width: calc(100% - 32px) !important;

    max-width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding: 0 !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .product-image,
  .hero-image {
    width: 100% !important;

    margin: 0 auto !important;

    display: block !important;
  }
}
