/* ============================================
   222 Recetas - Landing Page PREMIUM
   Upgrade: animações, efeitos, micro-interações
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  --red: #bc0000;
  --red-dark: #890000;
  --green: #6eb876;
  --green-bright: #13a022;
  --cream: #f0eadc;
  --white: #fff;
  --dark: #242424;
  --gray: #565656;
  --gray-light: #868686;
  --gold: #d4a847;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 15px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.text-center {
  text-align: center;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
  background-size: 200% 100%;
  animation: shimmer-bg 4s ease-in-out infinite;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 20px;
  position: relative;
  overflow: hidden;
}

.top-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: top-bar-shine 5s ease-in-out infinite;
}

@keyframes top-bar-shine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

@keyframes shimmer-bg {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.top-bar-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.top-bar-icon {
  width: 91px;
  height: 22px;
  object-fit: contain;
}

.top-bar-stars {
  font-size: 18px;
  animation: star-twinkle 2s ease-in-out infinite;
}

@keyframes star-twinkle {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50% { opacity: 0.8; filter: brightness(1.3); }
}

.top-bar-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  background: var(--cream);
  padding: 0;
  text-align: center;
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 960px;
  display: block;
  margin: 0 auto;
  animation: hero-fade-in 1s ease-out;
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.hero-cta-wrapper {
  padding: 20px 20px 40px;
  background: var(--cream);
  text-align: center;
}

/* ============================================
   Botão CTA - Premium
   ============================================ */
.btn-cta {
  display: inline-block;
  background: linear-gradient(180deg, #d40000 0%, var(--red) 40%, var(--red-dark) 100%);
  color: #fff;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 6px 25px rgba(188,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shine 2.5s ease-in-out infinite;
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}

@keyframes shine {
  0% { left: -100%; }
  60%, 100% { left: 100%; }
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(188,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  filter: brightness(1.08);
}

.btn-cta:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 4px 15px rgba(188,0,0,0.3);
}

.btn-cta-big {
  padding: 22px 60px;
  font-size: 20px;
  border-radius: 12px;
  animation: pulse-cta 2.5s ease-in-out infinite;
}

@keyframes pulse-cta {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 25px rgba(188,0,0,0.35); }
  50% { transform: scale(1.04); box-shadow: 0 10px 40px rgba(188,0,0,0.5); }
}

.btn-cta-big:hover {
  animation: none;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 45px rgba(188,0,0,0.5);
}

/* ============================================
   Sections
   ============================================ */
.section-cream {
  background: var(--cream);
  padding: 70px 20px;
  position: relative;
}

.section-white {
  background: var(--white);
  padding: 70px 20px;
  position: relative;
}

.section-light {
  background: #f4f4f4;
  padding: 70px 20px;
  position: relative;
}

/* Decorative dividers between sections */
.section-cream + .section-white,
.section-white + .section-cream,
.section-light + .section-cream {
  border-top: none;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark);
  line-height: 1.4;
  position: relative;
}

/* Premium underline accent for titles */
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-title .red,
.section-title span.red,
.red {
  color: var(--red);
}

.subtitle {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 40px 0 25px;
  color: var(--dark);
}

/* ============================================
   Slider Fotos (após hero)
   ============================================ */
.section-slider {
  background: var(--cream);
  padding: 30px 20px;
}

.fotos-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.foto-slide {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.foto-slide:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.foto-slide img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid #a3bac6;
  transition: transform var(--transition-slow);
}

.foto-slide:hover img {
  transform: scale(1.08);
}

/* ============================================
   Checklist - Premium
   ============================================ */
.checklist {
  max-width: 700px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 22px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid transparent;
  transition: all var(--transition);
  cursor: default;
}

.checklist-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--green);
}

.check-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--green), #4caf50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(110,184,118,0.3);
  transition: transform var(--transition);
}

.checklist-item:hover .check-icon {
  transform: scale(1.15) rotate(5deg);
}

.checklist-item p {
  font-size: 16px;
  color: var(--gray);
  margin: 0;
}

/* ============================================
   Ebook Showcase - Premium
   ============================================ */
.ebook-showcase {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.ebook-showcase::before {
  content: "";
  position: absolute;
  inset: 20px;
  background: linear-gradient(135deg, rgba(188,0,0,0.08), rgba(110,184,118,0.08));
  border-radius: 25px;
  filter: blur(30px);
  z-index: 0;
}

.showcase-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}

.showcase-img:hover {
  transform: scale(1.03) rotate(-0.5deg);
}

/* ============================================
   Ebook Description
   ============================================ */
.ebook-description {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

.ebook-description p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

/* ============================================
   Módulos Accordion - Premium
   ============================================ */
.modulos-accordion {
  max-width: 700px;
  margin: 0 auto;
}

.modulo-accordion-item {
  margin-bottom: 10px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.modulo-accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.modulo-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 20px;
  background: var(--cream);
  border: none;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: #292929;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.modulo-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--green), #4caf50);
  transition: width var(--transition);
  border-radius: 16px 0 0 16px;
}

.modulo-header:hover::before,
.modulo-header.active::before {
  width: 4px;
}

.modulo-header:hover,
.modulo-header.active {
  color: var(--green);
  padding-left: 24px;
}

.modulo-title {
  flex: 1;
}

.modulo-icon {
  font-size: 14px;
  color: var(--green);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modulo-icon.rotated {
  transform: rotate(180deg);
}

.modulo-body {
  max-height: 0;
  overflow: hidden;
  background: var(--cream);
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modulo-body.active {
  max-height: 500px;
}

.modulo-body ul {
  list-style: none;
  padding: 0 20px 17px;
}

.modulo-body ul li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
  padding-left: 0;
}

.modulo-body ul li:hover {
  padding-left: 8px;
  color: var(--dark);
}

.modulo-body ul li:last-child {
  border-bottom: none;
}

/* ============================================
   Testimonios - Premium
   ============================================ */
.testimonios-prints {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.testimonios-prints img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  cursor: default;
}

.testimonios-prints img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Slider de fotos de clientes */
.testimonios-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonio-foto img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid #a3bac6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ============================================
   Countdown Inline (Bonos) - Premium
   ============================================ */
.countdown-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 25px 0 40px;
}

.countdown-box {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 70px;
  box-shadow: 0 4px 15px rgba(188,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.countdown-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(255,255,255,0.08);
  border-radius: 10px 10px 0 0;
}

.countdown-box span {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.countdown-box small {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.9;
  position: relative;
}

.countdown-sep {
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
  animation: sep-blink 1s ease-in-out infinite;
}

@keyframes sep-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================
   Bonos Grid - Premium
   ============================================ */
.bonos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 700px;
  margin: 0 auto;
}

.bono-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.bono-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
  background-size: 200% 100%;
  animation: gradient-slide 3s ease infinite;
  opacity: 0;
  transition: opacity var(--transition);
}

@keyframes gradient-slide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.bono-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.bono-card:hover::before {
  opacity: 1;
}

.bono-card img {
  max-height: 180px;
  margin-bottom: 15px;
  transition: transform var(--transition);
}

.bono-card:hover img {
  transform: scale(1.05);
}

.bono-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.bono-card p {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 10px;
  line-height: 1.5;
}

.bono-valor {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}

.bono-valor strong {
  color: var(--red);
}

/* ============================================
   Certificado - Premium
   ============================================ */
.certificado-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.certificado-wrapper::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, rgba(212,168,71,0.15), rgba(110,184,118,0.1));
  border-radius: 25px;
  filter: blur(20px);
  z-index: 0;
}

.certificado-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}

.certificado-img:hover {
  transform: scale(1.02);
}

/* ============================================
   Urgency Bar Sticky - Premium
   ============================================ */
.urgency-bar {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.urgency-bar.stuck {
  padding: 8px 20px;
  box-shadow: 0 4px 20px rgba(137,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  backdrop-filter: blur(10px);
}

.urgency-bar p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.urgency-bar.stuck p {
  font-size: 13px;
  margin: 0;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.urgency-bar.stuck .countdown {
  gap: 5px;
}

.countdown-item {
  background: rgba(255,255,255,0.15);
  padding: 10px 15px;
  border-radius: 8px;
  min-width: 60px;
  line-height: 1.1;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  transition: all var(--transition);
}

.urgency-bar.stuck .countdown-item {
  padding: 4px 8px;
  min-width: 36px;
  border-radius: 4px;
}

.countdown-number {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.urgency-bar.stuck .countdown-number {
  font-size: 14px;
}

.countdown-label {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.9;
}

.urgency-bar.stuck .countdown-label {
  font-size: 8px;
}

/* ============================================
   Pricing Card - Premium
   ============================================ */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 45px 40px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(188,0,0,0.08);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  background-size: 200% 100%;
  animation: gradient-slide 3s ease infinite;
}

.pricing-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(188,0,0,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-card-green {
  border-color: rgba(19,160,34,0.12);
  margin-top: 40px;
}

.pricing-card-green::before {
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
  background-size: 200% 100%;
  animation: gradient-slide 3s ease infinite;
}

.pricing-card-green::after {
  background: radial-gradient(circle, rgba(19,160,34,0.04) 0%, transparent 70%);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(188,0,0,0.3);
}

.pricing-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 25px;
}

.pricing-title::after {
  display: none;
}

.pricing-price-wrapper {
  margin-bottom: 25px;
}

.pricing-old-price {
  display: block;
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 5px;
  font-weight: 600;
}

.pricing-discount {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.pricing-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.pricing-features span {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
}

.price-big {
  font-size: 80px;
  font-weight: 900;
  color: var(--red);
  margin: 10px 0 20px;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.price-big.green {
  color: var(--green-bright);
  text-shadow: 0 2px 10px rgba(19,160,34,0.15);
}

.price-currency {
  font-size: 40px;
  vertical-align: top;
}

.price-decimal {
  font-size: 40px;
}

.price-usd {
  font-size: 24px;
  font-weight: 700;
}

/* CTA dentro do card - sem pulse invadindo */
.pricing-card .btn-cta-big {
  display: block;
  width: 100%;
  padding: 20px 30px;
  font-size: 19px;
  margin: 0;
  animation: pulse-cta 2.5s ease-in-out infinite;
}

.btn-cta-green {
  background: linear-gradient(180deg, #15b828 0%, var(--green-bright) 40%, #0d8a1c 100%);
  box-shadow: 0 6px 25px rgba(19,160,34,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-cta-green:hover {
  box-shadow: 0 12px 35px rgba(19,160,34,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}

.garantia-text {
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray);
  padding: 12px 20px;
  background: rgba(110,184,118,0.06);
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(110,184,118,0.12);
}

/* Oferta texto dentro do card green */
.pricing-card-green .oferta-texto {
  font-size: 18px;
  margin: 0 0 5px;
}

/* ============================================
   Valor Table - Premium
   ============================================ */
.valor-table {
  max-width: 550px;
  margin: 0 auto 30px;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px 30px;
  box-shadow: var(--shadow-md);
}

.valor-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  transition: all var(--transition);
}

.valor-row:hover {
  padding-left: 5px;
}

.valor-row.total {
  font-weight: 700;
  font-size: 17px;
  border-bottom: none;
  padding-top: 18px;
  margin-top: 5px;
  border-top: 2px solid var(--red);
}

.valor-price {
  color: var(--red);
  font-weight: 600;
  white-space: nowrap;
}

.valor-row.total .valor-price {
  text-decoration: line-through;
  opacity: 0.6;
}

.oferta-texto {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px;
  color: var(--dark);
}

/* ============================================
   Como Comprar - Premium
   ============================================ */
.como-comprar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.como-step {
  text-align: center;
  padding: 25px 15px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.como-step:hover {
  background: rgba(110,184,118,0.05);
  transform: translateY(-4px);
}

.step-number {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--green), #4caf50);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(110,184,118,0.3);
  transition: all var(--transition);
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(110,184,118,0.2);
}

.como-step:hover .step-number {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(110,184,118,0.4);
}

.como-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* Step connector arrows (desktop) */
.como-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 40px;
  font-size: 24px;
  color: var(--green);
  font-weight: 700;
  opacity: 0.5;
}

/* ============================================
   FAQ - Premium
   ============================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: #f4f4f4;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.faq-item:hover {
  border-color: rgba(110,184,118,0.2);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}

.faq-question:hover {
  background: #eee;
  padding-left: 25px;
}

.faq-icon {
  font-size: 24px;
  color: var(--green);
  font-weight: 300;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon.rotated {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   CTA Final Section
   ============================================ */
.section-cream.text-center .btn-cta-big {
  margin: 20px 0;
}

/* ============================================
   Footer - Premium
   ============================================ */
.footer {
  background: linear-gradient(180deg, #1a1a1a, var(--dark));
  color: #bfbfbf;
  padding: 50px 20px;
  text-align: center;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--gold), var(--green), transparent);
}

.footer p {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer-links a {
  color: #bfbfbf;
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition);
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

/* ============================================
   Number Counter Animation
   ============================================ */
.counter-animated {
  display: inline-block;
  transition: all 0.3s ease;
}

.counter-animated.counting {
  color: var(--green-bright);
}

/* ============================================
   Floating particles (subtle bg effect)
   ============================================ */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(110,184,118,0.15);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100%) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* ============================================
   Badge premium nos bonos
   ============================================ */
.badge-gratis {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), #e53e3e);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
  box-shadow: 0 2px 8px rgba(188,0,0,0.25);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
  }

  .top-bar-text {
    font-size: 16px;
  }

  .bonos-grid {
    grid-template-columns: 1fr;
  }

  .como-comprar-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .como-step::after {
    display: none;
  }

  .price-big {
    font-size: 56px;
  }

  .price-currency,
  .price-decimal {
    font-size: 28px;
  }

  .btn-cta-big {
    padding: 18px 40px;
    font-size: 16px;
  }

  .section-title {
    font-size: 20px;
  }

  .testimonios-prints {
    grid-template-columns: 1fr;
    max-width: 350px;
  }

  .testimonios-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .fotos-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .valor-table {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .testimonios-slider {
    grid-template-columns: 1fr;
    max-width: 250px;
  }

  .countdown-box {
    padding: 12px 15px;
    min-width: 60px;
  }

  .countdown-box span {
    font-size: 26px;
  }

  .fotos-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
