/* ============================================================
   CALIGRAFIA PRO - CSS Puro
   Design: Cinematografico Premium
   Paleta: Verde Profundo (#062E23/#0B3D2E/#134E3A)
   Destaque: Dourado (#D4AF37)
   CTA: Verde Vibrante (#1FAF5A)
   
   Fontes: Montserrat (headlines) + Inter (body)
   Sem frameworks - CSS puro, limpo e comentado
============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #062E23;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  outline: none;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container { padding: 0 24px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

/* ===== TIPOGRAFIA ===== */
.headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.subheadline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.body-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

/* ===== CORES DE DESTAQUE ===== */
.text-gold { color: #D4AF37; }
.text-green { color: #1FAF5A; }
.text-dark-green { color: #0B3D2E; }
.text-white { color: #ffffff; }
.text-white-60 { color: rgba(255,255,255,0.6); }
.text-white-50 { color: rgba(255,255,255,0.5); }
.text-white-40 { color: rgba(255,255,255,0.4); }
.text-white-30 { color: rgba(255,255,255,0.3); }
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }

/* ===== STICKY PROMO BAR ===== */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0B3D2E 0%, #134E3A 50%, #0B3D2E 100%);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  padding: 12px 0;
  text-align: center;
  transition: box-shadow 0.5s ease;
}

.promo-bar.scrolled {
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.promo-bar p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}

.promo-bar .promo-sub {
  font-weight: 400;
  opacity: 0.9;
  font-size: 12px;
}

.promo-spacer {
  height: 48px;
}

@media (min-width: 768px) {
  .promo-bar p { font-size: 16px; }
  .promo-bar .promo-sub { font-size: 14px; }
  .promo-spacer { height: 56px; }
}

/* ===== SVG ICONS INLINE ===== */
.icon-inline {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}

.icon-sm {
  width: 20px;
  height: 20px;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.icon-lg {
  width: 28px;
  height: 28px;
}

.icon-xl {
  width: 32px;
  height: 32px;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 80px 0 100px;
  position: relative;
  background: linear-gradient(180deg, #062E23 0%, #0B3D2E 40%, #062E23 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31, 175, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero h1 .sub-line {
  font-size: 0.65em;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero { padding: 128px 0 140px; }
  .hero-sub { font-size: 20px; }
}

@media (min-width: 1024px) {
  .hero { padding: 160px 0 180px; }
}

/* ===== POSITIONING BADGE ===== */
.badge-positioning {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
}

.badge-positioning .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4AF37;
  animation: pulse 2s infinite;
}

/* ===== AUTHORITY BADGES ===== */
.authority-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.authority-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.authority-badge svg { color: #1FAF5A; }

@media (min-width: 768px) {
  .authority-badges { gap: 16px; }
}

/* ===== BOTOES ===== */
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 48px;
  background: linear-gradient(135deg, #1FAF5A 0%, #16a34a 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(31, 175, 90, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-green::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(31, 175, 90, 0.4), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(31, 175, 90, 0.45);
}

.btn-green:hover::before { opacity: 1; }

.btn-green:active {
  transform: translateY(-1px);
}

.btn-green-full {
  width: 100%;
  padding: 24px;
  font-size: 18px;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .btn-green { padding: 24px 64px; font-size: 18px; }
}

/* ===== BADGE DOURADO ===== */
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
  color: #062E23;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== GOLD DIVIDER ===== */
.divider-gold {
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.divider-gold-sm {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #C9A227);
  margin: 0 auto;
}

/* ===== SECOES DE FUNDO ===== */
.section-light {
  background: linear-gradient(180deg, #F0F5F2 0%, #F7FAF8 100%);
  color: #0B3D2E;
}

.section-warm {
  background: linear-gradient(180deg, #F7FAF8 0%, #EDF3EF 100%);
  color: #0B3D2E;
}

.section-dark {
  background: linear-gradient(180deg, #062E23 0%, #0B3D2E 100%);
  color: #ffffff;
}

.section-darker {
  background: linear-gradient(180deg, #041F18 0%, #062E23 100%);
  color: #ffffff;
}

.section-offer {
  background: linear-gradient(180deg, #041F18 0%, #062E23 50%, #041F18 100%);
}

.section-security {
  background: linear-gradient(135deg, #0B3D2E 0%, #134E3A 50%, #0B3D2E 100%);
  position: relative;
  overflow: hidden;
}

.section-security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* ===== PADDING DE SECOES ===== */
.section-padding {
  padding: 80px 0;
}

.section-padding-lg {
  padding: 80px 0 112px;
}

@media (min-width: 768px) {
  .section-padding { padding: 112px 0; }
  .section-padding-lg { padding: 128px 0; }
}

/* ===== CARDS ===== */
.card-light {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.card-glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
}

.card-glass:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

/* ===== CARD DE OFERTA ===== */
.card-offer {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.card-offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1FAF5A, #D4AF37, #1FAF5A);
}

@media (min-width: 768px) {
  .card-offer { padding: 56px; }
}

/* ===== ICON CIRCLE ===== */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0B3D2E 0%, #134E3A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(11, 61, 46, 0.3);
  flex-shrink: 0;
}

.icon-circle-lg {
  width: 80px;
  height: 80px;
  border-radius: 20px;
}

.icon-circle-sm {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

/* ===== SELO DE GARANTIA ===== */
.guarantee-seal {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  margin: 0 auto 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-seal::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #C9A227);
  opacity: 0.2;
  filter: blur(20px);
}

.guarantee-seal-inner {
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 4px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(8px);
}

.guarantee-seal-inner svg {
  color: #D4AF37;
  margin-bottom: 4px;
}

.guarantee-seal-inner p {
  color: #D4AF37;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== METHOD STEPS ===== */
.method-step {
  text-align: center;
  position: relative;
}

.method-step .step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 80px;
  opacity: 0.05;
  color: #0B3D2E;
  pointer-events: none;
}

/* ===== CARROSSEL ===== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .carousel-slide { padding: 0 32px; }
}

/* Dots de navegacao */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #1FAF5A;
  width: 28px;
  border-radius: 5px;
}

.carousel-dot-light {
  background: rgba(11, 61, 46, 0.15);
}

.carousel-dot-light.active {
  background: #1FAF5A;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover { color: #1FAF5A; }

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  color: rgba(255,255,255,0.4);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: #1FAF5A;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== BONUS STACK ===== */
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
}

.bonus-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.bonus-number-main {
  background: linear-gradient(135deg, #1FAF5A 0%, #0B3D2E 100%);
  color: #ffffff;
}

.bonus-number-secondary {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.bonus-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.bonus-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 4px;
}

.bonus-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* ===== METRICS ===== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.metric-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: #1FAF5A;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
}

/* ===== SECURITY GRID ===== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .security-grid { grid-template-columns: repeat(4, 1fr); }
}

.security-item svg {
  margin: 0 auto 12px;
}

.security-item p {
  font-size: 14px;
  font-weight: 600;
}

/* ===== OFFER SECTION ===== */
.offer-price-old {
  font-size: 20px;
  color: #9ca3af;
  text-decoration: line-through;
}

.offer-price-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 10vw, 6rem);
  color: #0B3D2E;
  line-height: 1;
}

.offer-price-currency {
  font-size: 20px;
  font-weight: 700;
  color: #6b7280;
}

.offer-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.offer-benefit svg {
  color: #1FAF5A;
  flex-shrink: 0;
}

.offer-benefit span {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

/* ===== CHECK LIST ===== */
.check-list {
  list-style: none;
  text-align: left;
  max-width: 384px;
  margin: 0 auto 40px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.check-list li svg {
  color: #1FAF5A;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* ===== EMOTIONAL SECTION ===== */
.emotional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .emotional-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.emotional-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.emotional-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.emotional-list {
  list-style: none;
}

.emotional-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.emotional-list li .el-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1FAF5A 0%, #0B3D2E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.emotional-list li p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

.emotional-list li strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0B3D2E;
  margin-bottom: 2px;
}

/* ===== MOBILE FIXED BUTTON ===== */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 12px;
  background: linear-gradient(to top, #041F18 0%, rgba(4, 31, 24, 0.95) 70%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.mobile-cta.visible {
  transform: translateY(0);
}

.mobile-cta .btn-green {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .mobile-cta { display: none; }
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #041F18;
  text-align: center;
}

.footer p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 600;
}

.footer .footer-sub {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  margin-top: 12px;
  font-weight: 400;
}

/* ===== ANIMACOES ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(31, 175, 90, 0.3); }
  50% { box-shadow: 0 8px 40px rgba(31, 175, 90, 0.5); }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ===== GRIDS RESPONSIVOS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

/* ===== UTILIDADES ===== */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-14 { margin-bottom: 56px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }

.max-w-sm { max-width: 384px; }
.max-w-md { max-width: 448px; }
.max-w-lg { max-width: 512px; }
.max-w-xl { max-width: 576px; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.max-w-5xl { max-width: 1024px; }

/* ===== GLOW EFFECT ===== */
.glow-green {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(31, 175, 90, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===== DESCRIPTION SLIDES ===== */
.slide-card-light {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.slide-card-light .slide-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0B3D2E 0%, #134E3A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}

.slide-card-light h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #0B3D2E;
  margin-bottom: 8px;
}

.slide-card-light p {
  color: #4b5563;
  font-size: 16px;
}

/* ===== SAMPLE IMAGE ===== */
.sample-image-wrapper {
  position: relative;
}

.sample-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, rgba(31, 175, 90, 0.2), rgba(212, 175, 55, 0.15));
  border-radius: 20px;
  filter: blur(16px);
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.sample-image-wrapper:hover::before {
  opacity: 0.8;
}

.sample-image-wrapper img {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .sample-image-wrapper img { height: 500px; }
}

/* ===== POSITIONING CARDS ===== */
.positioning-card {
  padding: 20px;
  text-align: center;
  border-top: 3px solid #D4AF37;
}

.positioning-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0B3D2E;
}

/* ===== TESTIMONIAL ===== */
.testimonial-card {
  padding: 32px 40px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1FAF5A 0%, #0B3D2E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.testimonial-info p:first-child {
  font-weight: 700;
  color: #fff;
}

.testimonial-info p:last-child {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.testimonial-stars {
  margin-left: auto;
  display: flex;
  gap: 4px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #D4AF37;
  fill: #D4AF37;
}

.testimonial-text {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
}

/* ===== BENEFIT CARDS (Why it works) ===== */
.benefit-card {
  text-align: center;
  padding: 32px 24px;
}

.benefit-card .benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0B3D2E 0%, #134E3A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 61, 46, 0.3);
}

.benefit-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #0B3D2E;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}
