/* ==========================================================================
   CHEF LETÍCIA - 365 RECEITAS SEM AÇÚCAR, SEM GLÚTEN E SEM LACTOSE
   Design System & Stylesheet (Vanilla CSS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --brand-green: #15803d;
  --brand-green-light: #16a34a;
  --brand-green-dark: #166534;
  --brand-orange: #f97316;
  --brand-orange-hover: #ea580c;
  --brand-cream: #f4f7f4;
  --brand-mint: #d9e8dc;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-white: #ffffff;
  
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(21, 128, 61, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --transition-fast: all 0.2s ease-in-out;
  --transition-normal: all 0.3s ease-in-out;
  
  --container-max: 1200px;
}

/* --------------------------------------------------------------------------
   2. BASE RESET & GLOBAL STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-white);
}

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

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

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

/* --------------------------------------------------------------------------
   3. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-medium {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* --------------------------------------------------------------------------
   4. ANIMATIONS & KEYFRAMES
   -------------------------------------------------------------------------- */
@keyframes ctaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 16px rgba(22, 163, 74, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.animate-pulse-cta {
  animation: ctaPulse 2s infinite;
}

/* --------------------------------------------------------------------------
   5. BUTTONS & CALL TO ACTIONS
   -------------------------------------------------------------------------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-green-light);
  color: var(--text-white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-normal);
  text-align: center;
  width: 100%;
  max-width: 540px;
}

.btn-cta:hover {
  background-color: var(--brand-green);
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -5px rgba(21, 128, 61, 0.4);
}

.btn-cta-lg {
  padding: 1.35rem 3rem;
  font-size: 1.35rem;
}

@media (max-width: 640px) {
  .btn-cta {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .btn-cta-lg {
    padding: 1.1rem 1.75rem;
    font-size: 1.1rem;
  }
}

/* --------------------------------------------------------------------------
   6. TOP URGENCY BAR
   -------------------------------------------------------------------------- */
.top-urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--brand-green);
  color: var(--text-white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.urgency-date-badge {
  display: inline-block;
  background-color: #fef08a;
  color: #15803d;
  font-weight: 900;
  padding: 0.1rem 0.55rem;
  border-radius: var(--radius-sm);
  margin-left: 0.2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .top-urgency-bar {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
  .urgency-date-badge {
    padding: 0.05rem 0.4rem;
  }
}

/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 5.5rem;
  padding-bottom: 3rem;
  background-color: var(--bg-white);
  text-align: center;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--brand-green);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 1.5rem auto;
}

.hero-image-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.hero-image {
  max-width: 720px;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 1.75rem auto;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
  .hero-subtitle {
    font-size: 1.35rem;
  }
}

/* --------------------------------------------------------------------------
   8. BENEFITS SECTION
   -------------------------------------------------------------------------- */
.benefits-section {
  padding: 3rem 1rem;
  background-color: var(--brand-cream);
}

.section-title-gradient {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--brand-green);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-text {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.3;
}

/* Photo Gallery Carousel */
.gallery-container {
  max-width: 500px;
  margin: 2.5rem auto 1.5rem auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.gallery-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.gallery-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: var(--radius-full);
  background-color: rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
  cursor: pointer;
}

.gallery-dot.active {
  background-color: var(--brand-orange);
  width: 2rem;
}

/* --------------------------------------------------------------------------
   9. RECIPES SHOWCASE ("VEJA O QUE VOCÊ VAI PREPARAR")
   -------------------------------------------------------------------------- */
.recipes-section {
  padding: 3rem 1rem;
  background-color: var(--brand-mint);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.recipe-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

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

.recipe-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.recipe-body {
  padding: 0.875rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.recipe-title {
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--brand-green);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.recipe-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .recipe-title {
    font-size: 1rem;
  }
  .recipe-desc {
    font-size: 0.875rem;
  }
}

/* --------------------------------------------------------------------------
   10. EXTRA RECIPES MOSAIC SECTION
   -------------------------------------------------------------------------- */
.extra-section {
  padding: 3.5rem 1rem;
}

.extra-box {
  background-color: var(--brand-green);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-2xl);
}

.extra-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.extra-mosaic {
  max-width: 650px;
  margin: 1.5rem auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
}

.extra-categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.category-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: center;
}

@media (min-width: 768px) {
  .extra-box {
    padding: 3.5rem 2.5rem;
  }
  .extra-title {
    font-size: 2.5rem;
  }
  .category-pill {
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   11. AUDIENCE TARGETING SECTION ("ESTE CARDÁPIO É PERFEITO...")
   -------------------------------------------------------------------------- */
.audience-section {
  padding: 3rem 1rem;
  background-color: var(--bg-white);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.audience-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(to right, var(--brand-cream), var(--bg-white));
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.audience-check {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-full);
  background-color: rgba(249, 115, 22, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-orange);
}

/* --------------------------------------------------------------------------
   12. BONUS SECTION
   -------------------------------------------------------------------------- */
.bonus-section {
  padding: 3.5rem 1rem;
  background-color: var(--brand-cream);
  text-align: center;
}

.badge-present {
  display: inline-block;
  background-color: var(--brand-orange);
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 760px;
  margin: 2rem auto;
}

.bonus-card {
  position: relative;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  text-align: left;
}

.bonus-img-wrapper {
  position: relative;
  width: 110px;
  flex-shrink: 0;
}

.bonus-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-badge-tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--brand-orange);
  color: var(--text-white);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-bottom-right-radius: var(--radius-sm);
}

.bonus-content {
  padding: 1rem;
  flex-grow: 1;
}

.bonus-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand-green);
  margin-bottom: 0.35rem;
}

.bonus-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.bonus-price-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.old-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.85rem;
}

.free-tag {
  background-color: #dcfce7;
  color: var(--brand-green);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.bonus-banner-total {
  background-color: var(--brand-green);
  color: var(--text-white);
  font-weight: 900;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  font-size: 1.15rem;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .bonus-img-wrapper {
    width: 150px;
  }
  .bonus-title {
    font-size: 1.25rem;
  }
  .bonus-desc {
    font-size: 0.95rem;
  }
  .bonus-banner-total {
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   13. PRICING & OFFER SECTION (#offer)
   -------------------------------------------------------------------------- */
.offer-section {
  padding: 3.5rem 1rem;
  background-color: var(--brand-green);
  color: var(--text-white);
}

.offer-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.offer-header h2 {
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.offer-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  max-width: 950px;
  margin: 0 auto;
  align-items: stretch;
}

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

.pricing-card {
  position: relative;
  background-color: var(--bg-white);
  color: var(--text-main);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  border-top: 8px solid var(--brand-orange);
}

.pricing-card.popular {
  border-top: 8px solid var(--brand-green);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.badge-popular {
  position: absolute;
  top: -14px;
  right: 1.25rem;
  background-color: #dc2626;
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.plan-badge {
  text-align: center;
  margin-bottom: 1rem;
}

.plan-badge span {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
}

.plan-badge-basic {
  background-color: #ffedd5;
  color: var(--brand-orange);
}

.plan-badge-super {
  background-color: var(--brand-orange);
  color: var(--text-white);
}

.plan-title {
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
  color: var(--brand-orange);
  margin-bottom: 1rem;
}

/* User approved tag for super offer */
.super-saving-tag {
  background: linear-gradient(135deg, #fef3c7, #ffedd5);
  border: 1px solid #f97316;
  color: #c2410c;
  font-weight: 800;
  font-size: 0.825rem;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  display: block;
}

.plan-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.35;
}

.plan-features svg {
  flex-shrink: 0;
  color: var(--brand-green-light);
}

.bonus-features-title {
  text-align: center;
  color: var(--brand-orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin: 1rem 0 0.5rem 0;
}

.plan-pricing-box {
  margin-top: auto;
  text-align: center;
  padding-top: 1rem;
}

.plan-old-price {
  color: #dc2626;
  text-decoration: line-through;
  font-weight: 700;
  font-size: 0.9rem;
}

.plan-main-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-green);
  line-height: 1;
  margin: 0.4rem 0;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 2rem 1.75rem;
  }
  .plan-title {
    font-size: 1.75rem;
  }
  .plan-features li {
    font-size: 1rem;
  }
  .plan-main-price {
    font-size: 4.25rem;
  }
}

/* --------------------------------------------------------------------------
   14. SOCIAL PROOF & REVIEWS SECTION
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 3.5rem 1rem;
  background-color: var(--bg-white);
}

.rating-summary-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 760px;
  margin: 1.5rem auto 2.5rem auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.score-box {
  text-align: center;
  flex-shrink: 0;
}

.score-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-green);
  line-height: 1;
}

.score-stars {
  color: var(--brand-orange);
  font-size: 1.25rem;
}

.score-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.bars-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.bar-track {
  flex-grow: 1;
  height: 0.6rem;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background-color: var(--brand-orange);
  border-radius: var(--radius-full);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.review-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.review-stars {
  color: var(--brand-orange);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.user-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-name {
  font-weight: 700;
  font-size: 0.875rem;
}

.user-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.review-img {
  width: 7rem;
  height: 7rem;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
}

.review-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-white);
  transition: var(--transition-fast);
}

.action-btn:hover {
  background-color: var(--bg-light);
}

/* --------------------------------------------------------------------------
   15. GUARANTEE SECTION
   -------------------------------------------------------------------------- */
.guarantee-section {
  padding: 3rem 1rem;
  background-color: var(--brand-cream);
}

.guarantee-box {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 1.75rem;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .guarantee-box {
    flex-direction: row;
    text-align: left;
    padding: 2.25rem;
  }
}

.guarantee-seal-img {
  width: 7rem;
  height: 7rem;
  flex-shrink: 0;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: rgba(21, 128, 61, 0.1);
  color: var(--brand-green);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.guarantee-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-green);
  margin-bottom: 0.5rem;
}

.guarantee-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   16. HOW YOU RECEIVE SECTION
   -------------------------------------------------------------------------- */
.receive-section {
  padding: 3.5rem 1rem;
  background-color: var(--bg-white);
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 0 auto;
}

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

.receive-card {
  background: linear-gradient(135deg, var(--brand-cream), var(--bg-white));
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.receive-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.receive-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.receive-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-green);
  margin-bottom: 0.35rem;
}

.receive-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   17. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 3.5rem 1rem;
  background-color: var(--brand-cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 760px;
  margin: 2rem auto 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.015);
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--brand-green);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
  padding: 0 1.25rem 1.15rem 1.25rem;
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 3rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-disclaimer {
  max-width: 750px;
  margin: 1.5rem auto 0 auto;
  font-size: 0.75rem;
  color: #64748b;
}

/* --------------------------------------------------------------------------
   19. WHATSAPP TESTIMONIALS CAROUSEL
   -------------------------------------------------------------------------- */
.testimonials-slider-box {
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}

.testimonials-title {
  font-size: 1.75rem;
  font-weight: 900;
  text-align: center;
  color: var(--brand-green);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .testimonials-title {
    font-size: 2.25rem;
  }
}

.testimonials-carousel-wrapper {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .testimonials-carousel-wrapper {
    padding: 2rem;
  }
}

.testimonials-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.testimonials-track::-webkit-scrollbar {
  height: 6px;
}

.testimonials-track::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-full);
}

.testimonials-track::-webkit-scrollbar-thumb {
  background: var(--brand-green);
  border-radius: var(--radius-full);
}

.testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

@media (min-width: 640px) {
  .testimonial-slide {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (min-width: 1024px) {
  .testimonial-slide {
    flex: 0 0 calc(33.333% - 0.67rem);
  }
}

.testimonial-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.drag-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--brand-green);
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 1.25rem;
}

