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

:root {
  --primary-green: #0a4a37;
  --light-green: #64a344;
  --accent-green: #063c2c;
  --pale-green: #eef2ea;
  --bg-cream: #faf7f2;
  --bg-white: #ffffff;
  --gold: #b79a59;
  --text-dark: #1c2b25;
  --text-medium: #415b51;
  --text-light: #7c8f87;
  --border-color: #e6e1d6;
  --shopee-orange: #ee4d2d;
  --meli-yellow: #ffe600;
  --meli-blue: #3483fa;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.8;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ANVISA TOP STRIP ===== */
.anvisa-strip {
  background: var(--accent-green);
  color: white;
  text-align: center;
  padding: 8px 10px;
  font-size: 12.5px;
  letter-spacing: 0.3px;
}

.anvisa-strip strong {
  font-weight: 700;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo .kanji {
  width: 48px;
  height: 48px;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-green);
  font-weight: 700;
}

.logo .brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 1px;
  line-height: 1.2;
}

.logo .tagline {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-medium);
  display: block;
}

.top-buy-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-shopee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--shopee-orange);
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-shopee:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 77, 45, 0.35);
}

.btn-meli {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--meli-yellow);
  color: #2d3277;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-meli:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 230, 0, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
}

/* ===== NAVIGATION ===== */
.main-nav {
  background: var(--bg-white);
  border-bottom: 2px solid var(--primary-green);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav .container {
  display: flex;
  justify-content: center;
}

.main-nav a {
  padding: 14px 22px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  position: relative;
}

.main-nav a:hover {
  color: var(--primary-green);
  opacity: 1;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5faf6 0%, #eaf4ec 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-content .pre-title {
  display: inline-block;
  background: var(--pale-green);
  color: var(--accent-green);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--accent-green);
  margin-bottom: 18px;
}

.hero-content h1 em,
.hero-content h1 .accent {
  font-style: italic;
  color: var(--light-green);
}

.hero-content .subtitle {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 26px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-ctas .btn-shopee,
.hero-ctas .btn-meli {
  padding: 15px 30px;
  font-size: 15px;
  border-radius: 6px;
}

.hero-specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-medium);
}

.hero-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-specs span::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 700;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(45, 90, 61, 0.15);
}

.hero-image-product {
  display: flex;
  justify-content: center;
}

.hero-image-product img {
  max-width: 480px;
  width: 100%;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 15px 50px rgba(45, 90, 61, 0.12);
}

.hero-image .anvisa-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 2px solid var(--primary-green);
  border-radius: 30px;
  padding: 8px 22px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-green);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== SECTION BASE ===== */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
  position: relative;
  padding-left: 26px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.center .section-label {
  padding-left: 0;
}

.center .section-label::before {
  display: none;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--accent-green);
  margin-bottom: 14px;
  line-height: 1.3;
}

.section-title em,
.section-title .accent {
  font-style: italic;
  color: var(--light-green);
}

.section-desc {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 36px;
  max-width: 760px;
}

.center {
  text-align: center;
}

.center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ===== BENEFITS ===== */
.benefits-section {
  padding: 70px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 32px 26px;
  transition: box-shadow 0.3s, transform 0.3s;
  background: white;
}

.benefit-card:hover {
  box-shadow: 0 10px 30px rgba(45, 90, 61, 0.1);
  transform: translateY(-4px);
}

.benefit-card .num {
  font-size: 13px;
  color: var(--light-green);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-green);
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.75;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-section {
  padding: 70px 0;
  background: var(--bg-cream);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.product-grid .product-img {
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.product-info .feature-list {
  list-style: none;
  margin: 22px 0;
}

.product-info .feature-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 14.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.product-info .feature-list li::before {
  content: '🌿';
  flex-shrink: 0;
}

.product-buy-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 70px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: white;
  padding: 26px 20px 16px;
  font-size: 14px;
  font-weight: 400;
}

/* ===== INGREDIENTS ===== */
.ingredients-section {
  padding: 70px 0;
  background: var(--bg-cream);
}

.ingredients-banner {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ingredient-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.ingredient-card:hover {
  transform: translateY(-5px);
}

.ingredient-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: var(--bg-cream);
  padding: 10px;
}

.ingredient-card .content {
  padding: 16px 15px 20px;
}

.ingredient-card .tag {
  font-size: 10.5px;
  color: var(--light-green);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ingredient-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-green);
  margin: 4px 0 6px;
}

.ingredient-card p {
  font-size: 12.5px;
  color: var(--text-medium);
  line-height: 1.65;
}

/* ===== HOW TO USE ===== */
.howto-section {
  padding: 70px 0;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.howto-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.howto-card .step {
  width: 46px;
  height: 46px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 14px;
}

.howto-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-green);
}

.howto-card p {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.7;
}

.howto-warning {
  background: #fff8e6;
  border-left: 4px solid #e6a817;
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 13.5px;
  color: #7a5c00;
}

/* ===== ANVISA SECTION ===== */
.anvisa-section {
  padding: 60px 0;
  background: var(--pale-green);
}

.anvisa-box {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(45, 90, 61, 0.08);
}

.anvisa-box .anvisa-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  background: #0b5394;
  color: white;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 2px;
  padding: 12px 34px;
  border-radius: 8px;
}

.anvisa-box .anvisa-check {
  display: inline-block;
  background: var(--pale-green);
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.anvisa-box .process {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-green);
  margin: 10px 0;
  letter-spacing: 0.5px;
}

.anvisa-box p {
  font-size: 13.5px;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 70px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 36px;
}

.testimonials-header .rating {
  font-size: 44px;
  color: var(--accent-green);
  font-weight: 700;
  line-height: 1.1;
}

.testimonials-header .stars {
  color: #f5a623;
  font-size: 22px;
  margin: 4px 0;
}

.testimonials-header .count {
  color: var(--text-light);
  font-size: 14px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-cream);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--border-color);
}

.testimonial-card .stars {
  color: #f5a623;
  font-size: 15px;
  margin-bottom: 8px;
}

.testimonial-card .title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.testimonial-card .text {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-medium);
  margin-bottom: 12px;
}

.testimonial-card .author {
  font-size: 12.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-card .author .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-card .verified {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 11.5px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 70px 0;
  background: var(--bg-cream);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--primary-green);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .answer {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.85;
}

.faq-item .answer strong {
  color: var(--accent-green);
}

/* ===== PERGUNTE À MAKISHI (CHAT) ===== */
.ask-section {
  padding: 70px 0;
  background: var(--bg-white);
}

.ask-chat {
  max-width: 780px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
}

.ask-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 0;
}

.ask-item:first-child {
  padding-top: 0;
}

.ask-divider {
  border: none;
  border-top: 1px dashed var(--border-color);
  margin: 0;
}

.ask-question {
  align-self: flex-start;
  max-width: 85%;
  background: var(--accent-green);
  color: #ffffff;
  padding: 16px 22px;
  border-radius: 16px 16px 16px 4px;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.7;
}

.ask-answer {
  align-self: flex-start;
  max-width: 90%;
  width: 100%;
}

.ask-bubble {
  background: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: 4px 16px 16px 16px;
  padding: 24px 26px;
}

.ask-bubble p {
  font-size: 14.5px;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 14px;
}

.ask-bubble p:last-child {
  margin-bottom: 0;
}

.ask-bubble p strong {
  color: var(--accent-green);
  font-size: 20px;
}

.ask-bubble .ask-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ask-bubble .ask-list li {
  font-size: 14.5px;
  color: var(--text-medium);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}

.ask-bubble .ask-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-green);
  font-weight: 700;
}

.ask-bubble .ask-tip {
  margin-top: 4px;
  font-size: 13px;
  font-style: italic;
  color: var(--light-green);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .ask-question,
  .ask-answer {
    max-width: 100%;
  }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px 0;
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-green);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== RELATED PAGES ===== */
.related-section {
  padding: 60px 0;
  background: var(--pale-green);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.related-card {
  display: block;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.related-card .related-title {
  display: block;
  font-weight: 700;
  color: var(--accent-green);
  font-size: 15px;
  margin-bottom: 6px;
}

.related-card .related-desc {
  display: block;
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ===== BUY SECTION ===== */
.buy-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green) 100%);
  color: white;
}

.buy-section .section-label {
  color: #b8e0c3;
}

.buy-section .section-title {
  color: white;
}

.buy-section .section-desc {
  color: #d7ecd d;
  color: #d7ecdd;
}

.buy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 860px;
  margin: 0 auto;
}

.buy-card {
  background: white;
  border-radius: 14px;
  padding: 34px 30px;
  text-align: center;
  color: var(--text-dark);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}

.buy-card:hover {
  opacity: 1;
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.buy-card .marketplace-logo {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.buy-card.shopee .marketplace-logo {
  color: var(--shopee-orange);
}

.buy-card.meli .marketplace-logo {
  color: #2d3277;
}

.buy-card .desc {
  font-size: 13.5px;
  color: var(--text-medium);
  margin-bottom: 18px;
}

.buy-card .cta {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
}

.buy-card.shopee .cta {
  background: var(--shopee-orange);
  color: white;
}

.buy-card.meli .cta {
  background: var(--meli-yellow);
  color: #2d3277;
}

.buy-note {
  text-align: center;
  margin-top: 26px;
  font-size: 13px;
  color: #cfe8d6;
}

/* ===== PARTNER CONTACT CARDS ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 700px;
  margin: 40px auto 0;
}

.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 30px 26px;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

.contact-card .contact-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-card .contact-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.contact-card .contact-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 16px;
  word-break: break-word;
}

.contact-card .cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.contact-card.whatsapp .cta {
  background: #25D366;
}

.contact-card.email .cta {
  background: var(--accent-green);
}

@media (max-width: 640px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== SEO CONTENT ===== */
.seo-section {
  padding: 70px 0;
}

.seo-content {
  max-width: 860px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-green);
  margin: 34px 0 14px;
}

.seo-content h2:first-child {
  margin-top: 0;
}

.seo-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 10px;
}

.seo-content p {
  font-size: 14.5px;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 14px;
}

.seo-content strong {
  color: var(--accent-green);
}

/* ===== FOOTER ===== */
.footer {
  background: #22392b;
  color: #c4d5c9;
  padding: 50px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #3a5443;
}

.footer-brand .logo-footer {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: #9db8a5;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  font-size: 13px;
  color: #9db8a5;
}

.footer-col ul li a:hover {
  color: white;
  opacity: 1;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #7d9886;
}

/* ===== WHERE TO BUY BUTTON ===== */
.btn-where-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  background: var(--accent-green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(46,93,67,0.25);
  transition: transform 0.2s, background 0.2s;
}

.btn-where-buy:hover {
  transform: translateY(-2px);
  background: #234a34;
  opacity: 1;
  color: #fff;
}

.top-buy-buttons .btn-where-buy {
  padding: 11px 24px;
  font-size: 13.5px;
}

/* ===== MOBILE FIXED BUY BAR ===== */
.mobile-buy-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}

.mobile-buy-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 30px;
  background: var(--accent-green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-ctas, .hero-specs {
    justify-content: center;
  }

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

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

  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

@media (max-width: 768px) {
  .top-bar .container {
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: space-between;
  }

  .top-bar .tagline {
    display: none;
  }

  .main-nav .container {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .main-nav .container::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    padding: 12px 14px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .hero {
    padding: 32px 0;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-image-product img {
    max-width: 300px;
  }

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

  section, .benefits-section, .product-section, .ingredients-section,
  .howto-section, .anvisa-section, .testimonials-section, .faq-section,
  .buy-section, .seo-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .gallery-grid,
  .buy-cards,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .btn-where-buy {
    width: 100%;
    min-height: 48px;
  }

  .top-buy-buttons .btn-where-buy {
    width: auto;
    min-height: 44px;
  }

  .faq-item summary {
    padding: 16px 14px;
    min-height: 48px;
  }

  .anvisa-strip {
    font-size: 11px;
    padding: 6px 10px;
  }

  .mobile-buy-bar {
    display: block;
  }

  body {
    padding-bottom: 76px;
  }
}

/* ===== REPRESENTANTES: FORM ===== */
.rep-section {
  padding: 70px 0;
  background: var(--bg-cream);
}

.rep-form {
  max-width: 720px;
  margin: 40px auto 0;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group .hint {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.radio-group {
  display: flex;
  gap: 24px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0;
}

.radio-group input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent-green);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-grid label,
.lgpd-group label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0;
}

.checkbox-grid input,
.lgpd-group input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent-green);
  margin-top: 2px;
  flex-shrink: 0;
}

.lgpd-group {
  background: var(--pale-green);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 28px 0 24px;
}

.lgpd-group a {
  color: var(--accent-green);
  font-weight: 700;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 30px;
  background: var(--accent-green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.form-submit-btn:hover {
  background: #234a34;
  transform: translateY(-2px);
}

.rep-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.rep-benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
}

.rep-benefit-card h3 {
  font-size: 15.5px;
  color: var(--accent-green);
  margin: 10px 0 8px;
}

.rep-benefit-card p {
  font-size: 13.5px;
  color: var(--text-medium);
  line-height: 1.7;
}

.rep-benefit-card .rep-icon {
  font-size: 28px;
}

.segment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.segment-tag {
  background: var(--pale-green);
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
}

.rep-cta-section {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green) 100%);
  padding: 60px 0;
  color: #fff;
}

.rep-cta-section .section-label { color: #b8e0c3; }
.rep-cta-section .section-title { color: #fff; }
.rep-cta-section .section-desc { color: #d7ecdd; }

.disclaimer-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 16px;
}

.thankyou-box {
  max-width: 560px;
  margin: 60px auto;
  text-align: center;
  padding: 0 24px;
}

.thankyou-box .check-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.thankyou-box h1 {
  font-size: 30px;
  margin-bottom: 16px;
  color: var(--accent-green);
}

.thankyou-box p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 14px;
}

.thankyou-box .signature {
  margin-top: 30px;
  font-weight: 700;
  color: var(--accent-green);
}

@media (max-width: 640px) {
  .form-row,
  .checkbox-grid,
  .rep-benefits-grid {
    grid-template-columns: 1fr;
  }
  .rep-form {
    padding: 26px 20px;
  }
  .radio-group {
    gap: 16px;
  }
}

/* ===== SAFETY CALLOUT: ANTES DOS PELOS, CUIDE DA PELE ===== */
.safety-section {
  padding: 60px 0;
  background: #fff8ec;
  border-top: 1px solid #f3e6c8;
  border-bottom: 1px solid #f3e6c8;
}

.safety-box {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.safety-box .safety-icon {
  font-size: 34px;
  flex-shrink: 0;
}

.safety-box h2 {
  font-size: 22px;
  color: #8a5a1f;
  margin-bottom: 10px;
}

.safety-box p {
  font-size: 14.5px;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 10px;
}

.safety-box .safety-warning {
  background: #fff0d6;
  border-left: 4px solid #c9852b;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 700;
  color: #6b4315;
  font-size: 13.5px;
  margin-top: 12px;
}

.safety-list {
  list-style: none;
  margin: 14px 0;
  padding: 0;
}

.safety-list li {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.safety-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #c9852b;
  font-weight: 700;
}

@media (max-width: 640px) {
  .safety-box {
    flex-direction: column;
    gap: 12px;
  }
}
