@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --color-off-white: #F8F1E6;
  --color-rose-burnished: #B96A73;
  --color-sage-deep: #526B54;
  --color-honey-gold: #C89B4A;
  --color-earth-brown: #9A7358;
  --color-champagne-light: #EFE1C8;
  --color-forest-green: #263F2E;
  --color-quartz-rose: #E8B8B5;
  --color-white: #FFFFFF;
  --color-shadow: rgba(40, 30, 20, 0.08);
  --color-gold-shadow: rgba(200, 155, 74, 0.15);
  
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-off-white);
  color: var(--color-forest-green);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* Paper Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  background-image: radial-gradient(var(--color-earth-brown) 0.5px, transparent 0.5px), 
                    radial-gradient(var(--color-earth-brown) 0.5px, var(--color-off-white) 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-forest-green);
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--color-honey-gold);
  margin: 0.8rem auto 0 auto;
}

p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--color-forest-green);
}

.text-center {
  text-align: center;
}

.highlight-text {
  color: var(--color-rose-burnished);
  font-weight: 600;
}

/* Layout Elements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* Custom Geometric Hexagon Background Pattern */
.bg-hexagon-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(circle, var(--color-honey-gold) 10%, transparent 11%),
    radial-gradient(circle, var(--color-honey-gold) 10%, transparent 11%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px var(--color-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-rose {
  background-color: var(--color-rose-burnished);
  color: var(--color-white);
  border: 1px solid rgba(200, 155, 74, 0.3);
}

.btn-rose:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(185, 106, 115, 0.4), 0 0 10px var(--color-gold-shadow);
  background-color: #a75c65;
}

.btn-forest {
  background-color: var(--color-forest-green);
  color: var(--color-white);
  border: 1px solid var(--color-honey-gold);
}

.btn-forest:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(38, 63, 46, 0.3), 0 0 10px var(--color-gold-shadow);
  background-color: #1d3124;
}

.btn-block {
  display: flex;
  width: 100%;
  text-align: center;
}

/* Header / Navbar */
/* Header container expansion to prevent overlapping on desktop */
header .container {
  max-width: 1400px;
  width: 100%;
}
\nheader {
  padding: 1.5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid rgba(200, 155, 74, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  text-decoration: none;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-title);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--color-forest-green);
  font-weight: 500;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--color-rose-burnished);
  font-weight: 600;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-forest-green);
  text-transform: uppercase;
  transition: var(--transition-fast);
}

nav a:hover {
  color: var(--color-rose-burnished);
}

.header-cta .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.75rem;
}

/* Cards & Containers (Glassmorphism) */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 155, 74, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px var(--color-shadow);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 155, 74, 0.5);
  box-shadow: 0 15px 40px rgba(40, 30, 20, 0.12), 0 0 15px var(--color-gold-shadow);
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-rose-burnished);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

/* --- Hero Section --- */
.hero {
  padding-top: 10rem;
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background-image: radial-gradient(circle at 80% 30%, rgba(239, 225, 200, 0.5) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-family: var(--font-title);
  font-style: italic;
  color: var(--color-earth-brown);
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  color: #3d5644;
}

.hero-bullets {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hero-bullet-icon {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--color-honey-gold);
  flex-shrink: 0;
}

.hero-bullet-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-forest-green);
  margin-bottom: 0.2rem;
}

.hero-bullet-text p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.hero-cta-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-microcopy {
  font-size: 0.75rem;
  color: var(--color-earth-brown);
  letter-spacing: 0.05em;
  display: flex;
  gap: 1.5rem;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(40, 30, 20, 0.15);
  border: 1px solid rgba(200, 155, 74, 0.3);
  background-color: var(--color-champagne-light);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-decor-hex {
  position: absolute;
  width: 150px;
  height: 150px;
  top: -40px;
  right: -40px;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23C89B4A' stroke-width='1'%3E%3Cpolygon points='50,3 93,28 93,78 50,103 7,78 7,28'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  z-index: 1;
}

/* --- Features / Dores Section --- */
.dores {
  background-color: rgba(239, 225, 200, 0.3);
  border-top: 1px solid rgba(200, 155, 74, 0.15);
  border-bottom: 1px solid rgba(200, 155, 74, 0.15);
}

.dores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.dor-card {
  text-align: center;
  padding: 2.2rem 1.8rem;
}

.dor-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem auto;
  color: var(--color-rose-burnished);
}

.dor-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.dor-text {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.dores-footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.dores-footer-highlight {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.dores-footer-sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-rose-burnished);
}

/* --- Mechanism Section --- */
.mechanism {
  background-color: var(--color-off-white);
}

.mechanism-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.mechanism-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(40, 30, 20, 0.12);
  border: 1px solid rgba(200, 155, 74, 0.2);
}

.mechanism-image {
  width: 100%;
  height: auto;
  display: block;
}

.mechanism-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

.mechanism-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.mechanism-step-num {
  width: 36px;
  height: 36px;
  background-color: var(--color-sage-deep);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  flex-shrink: 0;
  border: 2px solid var(--color-champagne-light);
}

.mechanism-step-content h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-forest-green);
  margin-bottom: 0.5rem;
}

.mechanism-step-content p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Connecting line for steps */
.mechanism-steps::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 18px;
  width: 1px;
  height: calc(100% - 30px);
  background-color: rgba(200, 155, 74, 0.2);
  z-index: 0;
}

/* --- Method (How It Works) Section --- */
.method {
  background-color: rgba(239, 225, 200, 0.2);
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.method-flow-step {
  text-align: center;
  position: relative;
}

.method-flow-num {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--color-rose-burnished);
  margin-bottom: 0.5rem;
}

.method-flow-icon {
  width: 60px;
  height: 60px;
  background: var(--color-white);
  border: 1px solid rgba(200, 155, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--color-honey-gold);
  box-shadow: 0 5px 15px var(--color-shadow);
  transition: var(--transition-smooth);
}

.method-flow-step:hover .method-flow-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(200, 155, 74, 0.2);
  border-color: var(--color-honey-gold);
}

.method-flow-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  color: var(--color-forest-green);
}

.method-flow-desc {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* Arrows between method steps */
.method-flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 40px;
  right: -20px;
  font-size: 1.5rem;
  color: var(--color-honey-gold);
  opacity: 0.5;
}

/* --- Desbloqueio (What You Unlock) Section --- */
.desbloqueio {
  background-color: var(--color-off-white);
}

.desbloqueio-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.desbloqueio-left {
  text-align: center;
}

.desbloqueio-decor-img {
  width: 150px;
  height: 150px;
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite;
}

.desbloqueio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.desbloqueio-card {
  padding: 2rem;
}

.desbloqueio-card-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  color: var(--color-rose-burnished);
}

.desbloqueio-card-text {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* --- Bonus Section --- */
.bonus {
  background-color: rgba(239, 225, 200, 0.3);
  border-top: 1px solid rgba(200, 155, 74, 0.15);
  border-bottom: 1px solid rgba(200, 155, 74, 0.15);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.bonus-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bonus-card-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-rose-burnished);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bonus-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  color: var(--color-honey-gold);
}

.bonus-card-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.bonus-card-text {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.bonus-card-price {
  font-size: 0.8rem;
  color: var(--color-earth-brown);
  font-weight: 500;
}

.bonus-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: var(--color-white);
  border: 1px dashed var(--color-honey-gold);
  border-radius: 6px;
  box-shadow: 0 5px 15px var(--color-shadow);
}

.bonus-total-left {
  display: flex;
  flex-direction: column;
}

.bonus-total-label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-earth-brown);
}

.bonus-total-value {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--color-rose-burnished);
  font-weight: 600;
}

.bonus-total-middle {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-sage-deep);
}

.bonus-total-right {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--color-forest-green);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --- Mestra Section --- */
.mestra {
  background-color: var(--color-off-white);
}

.mestra-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.mestra-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(40, 30, 20, 0.12);
  border: 1px solid rgba(200, 155, 74, 0.3);
}

.mestra-image {
  width: 100%;
  height: auto;
  display: block;
}

.mestra-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.mestra-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.mestra-quote {
  border-left: 2px solid var(--color-rose-burnished);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-rose-burnished);
}

.mestra-signature {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-forest-green);
}

/* --- Offer Section --- */
.offer {
  background-image: radial-gradient(circle at 10% 20%, rgba(239, 225, 200, 0.4) 0%, transparent 50%),
                    radial-gradient(circle at 90% 80%, rgba(232, 184, 181, 0.2) 0%, transparent 50%);
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.offer-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-guarantee-text {
  font-size: 0.9rem;
  margin: 1.5rem 0 2rem 0;
}

.offer-seal-container {
  width: 130px;
  height: 130px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Ccircle cx='50' cy='50' r='45' stroke='%23C89B4A' stroke-width='2' stroke-dasharray='3 3'/%3E%3Ccircle cx='50' cy='50' r='40' fill='%23EFE1C8' opacity='0.3'/%3E%3C/svg%3E");
  background-size: contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-honey-gold);
  box-shadow: 0 5px 15px var(--color-shadow);
}

.offer-seal-days {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-rose-burnished);
  line-height: 1;
}

.offer-seal-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.offer-card {
  padding: 3rem;
  text-align: center;
}

.offer-card-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-rose-burnished);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.offer-price-container {
  margin: 2rem 0;
}

.offer-price-main {
  font-family: var(--font-title);
  font-size: 4rem;
  color: var(--color-forest-green);
  font-weight: 700;
  line-height: 1;
}

.offer-price-installments {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-rose-burnished);
  margin-top: 0.5rem;
}

.offer-price-sub {
  font-size: 0.85rem;
  color: var(--color-earth-brown);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-features {
  margin-bottom: 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  border: 1px solid rgba(200, 155, 74, 0.15);
}

.offer-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.offer-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-rose-burnished);
  flex-shrink: 0;
}

.offer-card-cta {
  margin-bottom: 1.5rem;
}

.offer-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-earth-brown);
}

.offer-security svg {
  width: 14px;
  height: 14px;
}

/* --- FAQ Section --- */
.faq {
  background-color: rgba(239, 225, 200, 0.15);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid rgba(200, 155, 74, 0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(200, 155, 74, 0.4);
  box-shadow: 0 5px 15px var(--color-shadow);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-forest-green);
  text-align: left;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--color-honey-gold);
  transition: var(--transition-fast);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 2rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #3d5644;
  margin-bottom: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust as needed */
}

/* --- CTA Final Section --- */
.cta-final {
  background-color: var(--color-forest-green);
  color: var(--color-white);
  text-align: center;
  padding: 8rem 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(200, 155, 74, 0.15) 0%, transparent 60%);
  border-top: 1px solid var(--color-honey-gold);
}

.cta-final h2 {
  color: var(--color-champagne-light);
  margin-bottom: 1.5rem;
}

.cta-final h2::after {
  background-color: var(--color-rose-burnished);
}

.cta-final-text {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: var(--color-off-white);
  line-height: 1.4;
}

/* --- Footer --- */
footer {
  background-color: #17261c;
  color: var(--color-champagne-light);
  padding: 3rem 0;
  font-size: 0.75rem;
  border-top: 1px solid rgba(200, 155, 74, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-tagline {
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-honey-gold);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: var(--color-champagne-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-rose-burnished);
}

.footer-copyright {
  color: rgba(239, 225, 200, 0.5);
}


/* ==========================================================================
   CHECKOUT PAGE STYLES
   ========================================================================== */
.checkout-layout {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: radial-gradient(circle at 10% 10%, rgba(200, 155, 74, 0.05) 0%, transparent 40%);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.checkout-form-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-sage-deep);
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(200, 155, 74, 0.2);
  padding-bottom: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-control {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-control.full-width {
  grid-column: span 2;
}

.form-control label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-forest-green);
}

.form-control input {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(200, 155, 74, 0.3);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-forest-green);
  transition: var(--transition-fast);
}

.form-control input:focus {
  outline: none;
  border-color: var(--color-rose-burnished);
  background-color: var(--color-white);
  box-shadow: 0 0 8px rgba(185, 106, 115, 0.15);
}

/* Order Bump Card */
.order-bump-card {
  border: 1.5px dashed var(--color-honey-gold);
  border-radius: 6px;
  background-color: rgba(239, 225, 200, 0.25);
  padding: 1.8rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.order-bump-card:hover {
  border-color: var(--color-rose-burnished);
  background-color: rgba(239, 225, 200, 0.4);
}

.order-bump-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.order-bump-badge {
  background-color: var(--color-rose-burnished);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  animation: pulse 2s infinite;
}

.order-bump-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  user-select: none;
}

.order-bump-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-rose-burnished);
  cursor: pointer;
}

.order-bump-checkbox-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-forest-green);
}

.order-bump-content {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.order-bump-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(200, 155, 74, 0.2);
}

.order-bump-description {
  font-size: 0.8rem;
  color: #3d5644;
  margin-bottom: 0.5rem;
}

.order-bump-price {
  font-weight: 600;
  color: var(--color-rose-burnished);
  font-size: 0.95rem;
}

/* Sidebar Summary */
.checkout-summary {
  position: sticky;
  top: 6rem;
}

.checkout-summary h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 155, 74, 0.2);
  padding-bottom: 0.5rem;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.summary-item.bump-item {
  color: var(--color-rose-burnished);
  font-weight: 500;
  display: none; /* Hidden by default, toggled via JS */
}

.summary-divider {
  height: 1px;
  background-color: rgba(200, 155, 74, 0.2);
  margin-bottom: 1.5rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-forest-green);
  margin-bottom: 2rem;
}

.summary-total-price {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--color-rose-burnished);
}

.checkout-security-info {
  margin-top: 1.5rem;
  text-align: center;
}


/* ==========================================================================
   UPSELL PAGE STYLES
   ========================================================================== */
.upsell-layout {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: radial-gradient(circle at 50% 10%, rgba(82, 107, 84, 0.08) 0%, transparent 60%);
}

.upsell-alert-bar {
  background-color: var(--color-rose-burnished);
  color: var(--color-white);
  text-align: center;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
  animation: pulse-border 3s infinite;
}

.upsell-container {
  max-width: 950px;
  margin: 4rem auto 0 auto;
}

.upsell-card {
  padding: 4rem;
  border-color: rgba(82, 107, 84, 0.3);
  background: rgba(255, 255, 255, 0.75);
}

.upsell-card:hover {
  border-color: var(--color-sage-deep);
  box-shadow: 0 20px 50px rgba(40, 30, 20, 0.15), 0 0 20px rgba(82, 107, 84, 0.15);
}

.upsell-header {
  text-align: center;
  margin-bottom: 3rem;
}

.upsell-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.upsell-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-sage-deep);
  max-width: 700px;
  margin: 0 auto;
}

.upsell-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.upsell-image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border: 1px solid rgba(82, 107, 84, 0.2);
}

.upsell-image {
  width: 100%;
  height: auto;
  display: block;
}

.upsell-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.upsell-bullet {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.upsell-bullet-icon {
  width: 22px;
  height: 22px;
  color: var(--color-honey-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.upsell-bullet-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-forest-green);
  margin-bottom: 0.2rem;
}

.upsell-bullet-text p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: #3d5644;
}

.upsell-price-section {
  text-align: center;
  padding: 2rem;
  background-color: rgba(239, 225, 200, 0.25);
  border-radius: 6px;
  border: 1px solid rgba(200, 155, 74, 0.15);
  margin-bottom: 3rem;
}

.upsell-price-original {
  font-size: 0.85rem;
  color: var(--color-earth-brown);
  text-decoration: line-through;
  margin-bottom: 0.3rem;
}

.upsell-price-offer {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-forest-green);
  line-height: 1;
}

.upsell-price-badge {
  display: inline-block;
  background-color: var(--color-sage-deep);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-top: 0.8rem;
}

.upsell-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.upsell-no-link {
  font-size: 0.8rem;
  color: var(--color-earth-brown);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}

.upsell-no-link:hover {
  color: var(--color-rose-burnished);
  border-color: var(--color-rose-burnished);
}


/* ==========================================================================
   SUCCESS PAGE STYLES
   ========================================================================== */
.success-layout {
  padding-top: 8rem;
  padding-bottom: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.success-container {
  max-width: 650px;
  width: 100%;
}

.success-card {
  text-align: center;
  padding: 4rem 3rem;
}

.success-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(82, 107, 84, 0.1);
  color: var(--color-sage-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.success-icon-wrapper svg {
  width: 36px;
  height: 36px;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-text {
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  color: #3d5644;
}

.success-products-list {
  background-color: rgba(239, 225, 200, 0.2);
  border-radius: 6px;
  border: 1px solid rgba(200, 155, 74, 0.15);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.success-products-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-earth-brown);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 155, 74, 0.15);
  padding-bottom: 0.5rem;
}

.success-product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.success-product-name {
  font-weight: 600;
}

.success-product-price {
  color: var(--color-rose-burnished);
  font-weight: 600;
}

.success-instructions {
  text-align: left;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.success-instruction-item {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}

.success-instruction-num {
  width: 24px;
  height: 24px;
  background-color: var(--color-honey-gold);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.success-instruction-text p {
  margin-bottom: 0;
  font-size: 0.85rem;
}


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse-border {
  0% { background-color: var(--color-rose-burnished); }
  50% { background-color: #a75c65; }
  100% { background-color: var(--color-rose-burnished); }
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-subtitle {
    margin-bottom: 1rem;
  }
  
  .hero-bullets {
    align-items: center;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
  }
  
  .hero-cta-container {
    align-items: center;
  }
  
  .hero-microcopy {
    justify-content: center;
  }
  
  .hero-image-container {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .dores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mechanism-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mechanism-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
    order: -1;
  }
  
  .method-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .method-flow-step:not(:last-child)::after {
    display: none;
  }
  
  .desbloqueio-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .desbloqueio-left {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mestra-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mestra-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .offer-left {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-summary {
    position: relative;
    top: 0;
  }
  
  .upsell-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .upsell-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  
  header {
    position: relative;
    background-color: var(--color-off-white);
  }
  
  .header-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .header-cta {
    display: none;
  }
  
  .hero {
    padding-top: 3rem;
  }
  
  .dores-grid {
    grid-template-columns: 1fr;
  }
  
  .method-flow {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .desbloqueio-grid {
    grid-template-columns: 1fr;
  }
  
  .bonus-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .bonus-total-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem;
  }
  
  .offer-card {
    padding: 2rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-control.full-width {
    grid-column: span 1;
  }
  
  .order-bump-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .order-bump-image {
    max-width: 100px;
    margin: 0 auto;
  }
  
  .upsell-card {
    padding: 2rem 1.5rem;
  }
  
  .upsell-title {
    font-size: 2rem;
  }
  
  .success-card {
    padding: 2.5rem 1.5rem;
  }
}

/* Responsive Header fix for middle screen sizes (1280px and below) */
@media (max-width: 1280px) and (min-width: 769px) {
  .header-container {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    padding: 0 2rem;
  }
  
  .logo {
    flex-grow: 1;
    text-align: left;
  }

  nav {
    order: 3;
    width: 100%;
    margin-top: 1rem;
    border-top: 1px dashed rgba(200, 155, 74, 0.15);
    padding-top: 0.8rem;
  }

  nav ul {
    justify-content: center;
    gap: 2rem;
  }
  
  .header-cta {
    order: 2;
  }
}
