@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Lora:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  --font-serif: 'Lora', serif;
  --font-sans: 'Inter', sans-serif;
  
  --primary-color: #1b4332;       /* Deep Forest Green */
  --secondary-color: #2d6a4f;     /* Medium Sage Green */
  --light-green: #d8f3dc;         /* Soft Mint Green */
  --accent-gold: #f4d35e;         /* Vibrant warm gold */
  --accent-gold-dark: #b58900;
  --accent-red: #d90429;          /* Urgency Red */
  --accent-red-light: #fff5f5;
  
  --text-dark: #2d3142;           /* Charcoal */
  --text-light: #ffffff;
  --text-muted: #5c677d;
  
  --bg-cream: #fbf9f5;            /* Soft organic cream background */
  --bg-white: #ffffff;
  --bg-dark-green: #081c15;       /* Footer / testimonial background */
  
  --shadow-sm: 0 4px 6px rgba(27,67,50,0.04);
  --shadow-md: 0 12px 24px rgba(27,67,50,0.08);
  --shadow-lg: 0 20px 40px rgba(27,67,50,0.12);
  
  --border-radius-sm: 10px;
  --border-radius-md: 20px;
  --border-radius-lg: 32px;
  
  --transition-normal: all 0.3s ease;
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Page Wrapper */
.page-wrapper {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--accent-red);
  color: #fffbdf;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  padding: 12px 20px;
  line-height: 1.4;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  letter-spacing: 0.5px;
}
.announcement-bar span {
  color: var(--accent-gold);
}

/* Header & Hero Section */
.hero {
  margin: 40px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title br {
  display: none;
}
@media (min-width: 576px) {
  .hero-title br {
    display: block;
  }
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.5;
  font-weight: 500;
  padding: 0 10px;
}
.hero-tagline strong {
  color: var(--primary-color);
  font-weight: 700;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
}
.hero-image-wrapper img {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 15px 35px rgba(27,67,50,0.2));
  transition: var(--transition-bounce);
}
.hero-image-wrapper img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* Desktop optimization for Hero */
@media (min-width: 992px) {
  .hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    text-align: left;
    margin: 60px auto 40px auto;
  }
  .hero-subtitle {
    text-align: left;
  }
  .hero-title {
    text-align: left;
  }
  .hero-tagline {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
  }
  .hero-image-wrapper {
    margin-bottom: 0;
  }
  .hero-image-wrapper img {
    max-width: 400px;
  }
}

/* Price Card (Simple / Urgency) */
.price-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(27,67,50,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 360px;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}
.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold));
}

.price-badge {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.price-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.price-current {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 4px 0;
  line-height: 1;
  font-family: var(--font-sans);
}

/* Features Checklist */
.features-checklist {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 24px 30px;
  max-width: 480px;
  margin: 40px auto;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,67,50,0.04);
}
.features-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.features-checklist li {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Section Title & Warning text */
.section-title-banner {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 18px 24px;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  border-radius: var(--border-radius-sm);
  margin: 50px 0 30px 0;
  box-shadow: var(--shadow-sm);
}

.warning-text-box {
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--primary-color);
  margin: 30px auto 40px auto;
  max-width: 760px;
  line-height: 1.5;
  padding: 0 10px;
}
.warning-text-box span {
  color: var(--accent-red);
  font-weight: 800;
  display: inline-block;
}

/* Remedies Section & Grid */
.remedies-container {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 30px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,67,50,0.03);
  margin: 40px auto;
  max-width: 100%;
}
.remedies-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 576px) {
  .remedies-container {
    padding: 40px 30px;
  }
  .remedies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 992px) {
  .remedies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.remedy-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-cream);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
  border-left: 3px solid var(--secondary-color);
}
.remedy-item:hover {
  transform: translateX(4px);
  background: var(--light-green);
  color: var(--primary-color);
}

/* Extraction / Herb Info Banner */
.extraction-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px auto;
  text-align: center;
  max-width: 800px;
}
.extraction-banner img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  max-width: 100%;
  width: 100%;
}

.capsule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .capsule-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.capsule-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(27,67,50,0.03);
  transition: var(--transition-bounce);
}
.capsule-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--light-green);
}
.capsule-card img {
  max-width: 60px;
  height: auto;
  margin-bottom: 16px;
}
.capsule-card .capsule-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
}

/* Samples Section (Amostras) */
.samples-section {
  margin: 60px auto;
}

.samples-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sample-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(27,67,50,0.03);
  transition: var(--transition-normal);
}
.sample-card:hover {
  box-shadow: var(--shadow-md);
}

.sample-card-image-wrapper {
  width: 100%;
  position: relative;
  background-color: var(--light-green);
  display: flex;
  justify-content: center;
  align-items: center;
}
.sample-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}
.sample-card:hover .sample-card-image-wrapper img {
  transform: scale(1.03);
}

.sample-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sample-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 14px;
  line-height: 1.4;
}
.sample-card-title span.highlight-red {
  color: var(--accent-red);
}

.sample-card-desc {
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 500;
}

/* Desktop optimization for Sample Cards - Alternating layout */
@media (min-width: 768px) {
  .sample-card {
    flex-direction: row;
    min-height: 300px;
  }
  .sample-card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .sample-card-image-wrapper {
    width: 45%;
    min-height: 300px;
  }
  .sample-card-content {
    width: 55%;
    padding: 40px;
  }
}

/* How It Works Section */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 50px auto 30px auto;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.how-it-works-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.how-it-works-card svg {
  width: 84px;
  height: 84px;
  fill: var(--primary-color);
  background-color: var(--light-green);
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
}
.how-it-works-card:hover svg {
  transform: scale(1.1) rotate(6deg);
  background-color: var(--primary-color);
  fill: var(--text-light);
}

.how-it-works-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.how-it-works-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Testimonials (Depoimentos) Section */
.testimonials-section {
  background-color: var(--bg-dark-green);
  color: var(--text-light);
  border-radius: var(--border-radius-md);
  padding: 40px 20px;
  margin: 60px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .testimonials-section {
    padding: 60px 40px;
  }
}

.testimonials-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.testimonials-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: center;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.testimonials-grid img {
  border-radius: var(--border-radius-sm);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  max-width: 100%;
  border: 3px solid rgba(255,255,255,0.08);
  transition: var(--transition-normal);
}
.testimonials-grid img:hover {
  transform: scale(1.04);
  border-color: var(--accent-gold);
}

/* Bonus Section */
.bonus-header {
  color: var(--accent-red);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-top: 60px;
  font-family: var(--font-serif);
  line-height: 1.3;
}

.bonus-subheader {
  background: var(--accent-gold);
  color: var(--primary-color);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.15rem);
  padding: 12px 20px;
  text-align: center;
  margin: 16px auto 40px auto;
  border-radius: var(--border-radius-sm);
  max-width: 640px;
  box-shadow: var(--shadow-sm);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 576px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.bonus-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,67,50,0.03);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-bounce);
}
.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-green);
}

.bonus-card-tag {
  background: var(--accent-red-light);
  color: var(--accent-red);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.bonus-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
  line-height: 1.4;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-card img {
  border-radius: var(--border-radius-sm);
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.bonus-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Final Checkout Section */
.checkout-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark-green) 100%);
  padding: 60px 20px;
  margin: 60px 0 40px 0;
  border-radius: var(--border-radius-md);
  display: flex;
  justify-content: center;
}
@media (min-width: 576px) {
  .checkout-section {
    padding: 80px 40px;
  }
}

.checkout-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 40px 20px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--accent-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (min-width: 576px) {
  .checkout-card {
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
  }
}

.checkout-plan-tag {
  background: var(--accent-red);
  color: var(--text-light);
  font-weight: 800;
  font-size: 1rem;
  padding: 6px 20px;
  border-radius: 99px;
  text-transform: uppercase;
  margin-top: -65px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--bg-white);
  letter-spacing: 1px;
}

.checkout-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 15px;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px dashed var(--light-green);
  padding-bottom: 12px;
  width: 100%;
}

.checkout-card img {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
  transition: var(--transition-bounce);
}
.checkout-card:hover img {
  transform: scale(1.04);
}

.checkout-status {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 8px;
}

.checkout-price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.checkout-price-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0.8;
}

.checkout-price-current {
  font-size: clamp(3.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin: 6px 0;
  line-height: 1;
}

/* CTA button and its custom animations */
.cta-button-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 24px auto 0 auto;
}

@keyframes pulse-custom {
  0% { transform: scale(1); }
  50% { transform: scale(1.025); }
  100% { transform: scale(1); }
}

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

.cta-button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #1aa246 0%, #0d7931 100%);
  color: var(--text-light);
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  padding: 18px 24px;
  border-radius: 99px;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(13,121,49,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  animation: pulse-custom 2s infinite ease-in-out;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13,121,49,0.45);
}
.cta-button:active {
  transform: translateY(0);
}
.cta-button::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 4.5s infinite ease-in-out;
}

/* Urgency alert box */
.urgency-box {
  background: var(--accent-red-light);
  border-left: 4px solid var(--accent-red);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  margin-top: 30px;
  text-align: left;
  width: 100%;
}
.urgency-box p {
  font-size: 0.9rem;
  color: #5c1818;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}
.urgency-box p span {
  font-weight: 800;
  color: var(--accent-red);
}

/* Payment Icons */
.payment-icons {
  margin: 30px auto 10px auto;
  display: block;
  max-width: 260px;
  filter: grayscale(1) opacity(0.65);
  transition: var(--transition-normal);
}
.payment-icons:hover {
  filter: none;
  opacity: 1;
}
