/* =============================================
   FONTS LOCAIS (Performance)
   ============================================= */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-v20-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-v20-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

/* AQUI COMEÇA O RESTO DO SEU CSS ORIGINAL: */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
                        <!DOCTYPE html>
                        <html lang="en">
                        <head>
                            <meta charset="UTF-8">
                            <meta name="viewport" content="width=device-width, initial-scale=1.0">
              <style>
                body {
                  background-color: white; /* Ensure the iframe has a white background */
                }

                /* =============================================
   RHIZA - Substratos e Insumos Vivos
   Paleta de cores:
   --dark-teal:   #004441
   --dark-green:  #437501
   --light-green: #AEDD1B
   --cream:       #FFF6E9
   --beige:       #E5D8C6
   --light-beige: #C9BEB1
   ============================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FFF6E9;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---- Variáveis CSS ---- */
:root {
  --dark-teal:   #004441;
  --dark-green:  #437501;
  --light-green: #AEDD1B;
  --cream:       #FFF6E9;
  --beige:       #E5D8C6;
  --light-beige: #C9BEB1;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #3d3d3d;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.16);
  --transition:  0.25s ease;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Skip Link (Acessibilidade) ---- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #437501;
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* =============================================
   BOTÕES
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--dark-teal);
  border: 2px solid var(--dark-teal);
}

.btn-outline:hover {
  background: var(--dark-teal);
  color: var(--cream);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.icon-wa {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark-teal);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--cream);
  padding: 4px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--light-green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.header-social-proof {
  font-size: 0.78rem;
  color: var(--beige);
  text-align: right;
}

.header-social-proof strong {
  color: var(--light-green);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 68, 65, 0.82) 0%,
    rgba(0, 68, 65, 0.55) 50%,
    rgba(67, 117, 1, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5px 24px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  text-align: center;
  margin-bottom: 2px;
  margin-top: -40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-green);
  margin-bottom: 8px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--light-green);
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .hero-logo img {
    width: 200px;
    height: 200px;
  }
}

/* =============================================
   SEÇÃO ESCOLHA SEU PRODUTO
   ============================================= */
.choose-section {
  background: var(--cream);
  padding: 80px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--dark-teal);
  text-align: center;
  margin-bottom: 48px;
}

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

.choose-card {
  background: var(--white);
  border: 2px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.choose-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), border-color var(--transition);
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-green);
}

.choose-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--beige), var(--cream));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  flex-shrink: 0;
}

.choose-icon svg {
  width: 44px;
  height: 44px;
}

.choose-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-teal);
}

.choose-card-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.choose-thumbnails {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.thumb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.thumb-item img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--beige);
  transition: border-color var(--transition);
}

.choose-card:hover .thumb-item img {
  border-color: var(--light-green);
}

.thumb-item span {
  font-size: 0.68rem;
  color: var(--text-mid);
  font-weight: 500;
  text-align: center;
}

/* =============================================
   SEÇÕES DE PRODUTO
   ============================================= */
.product-section {
  padding: 80px 0;
  background: var(--white);
}

.product-section--alt {
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--light-green);
  color: var(--dark-teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 12px auto 0;
}

/* Produto Destaque */
.product-highlight {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  opacity: 0;
  transform: translateY(24px);
}

.product-highlight.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.15));
  transition: transform var(--transition);
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dark-teal);
  color: var(--light-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-line {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-green);
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--dark-teal);
  line-height: 1.1;
}

.product-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.product-features li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--light-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-right: 4px;
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-teal);
}

.price-unit {
  font-size: 0.85rem;
  color: var(--text-mid);
}

/* Miniaturas de produto */
.product-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-mini-grid--single {
  grid-template-columns: repeat(1, 320px);
  justify-content: center;
}

.product-mini-card {
  background: var(--white);
  border: 2px solid var(--beige);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(16px);
}

.product-mini-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), border-color var(--transition);
}

.product-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--light-green);
}

.product-mini-card img {
  width: 110px;
  height: 140px;
  object-fit: cover;
  flex-shrink: 0;
}

.mini-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.mini-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-teal);
}

.mini-info p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.mini-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-green);
}

/* =============================================
   SEÇÃO DEPOIMENTOS
   ============================================= */
.testimonials-section {
  padding: 80px 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid var(--light-beige);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-green);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  font-size: 1.2rem;
}

.star {
  display: inline-block;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin: 8px 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 68, 65, 0.1);
}

.author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dark-teal);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-teal);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* =============================================
   SEÇÃO FAQ
   ============================================= */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-section .section-header {
  margin-bottom: 48px;
}

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

.faq-item {
  background: var(--cream);
  border: 2px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: var(--light-green);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-question::before {
  content: '❓';
  font-size: 1.1rem;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-left: 28px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark-teal);
  padding: 48px 24px 32px;
  text-align: center;
}

.footer-cta {
  margin-bottom: 40px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--cream);
  padding: 6px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--light-beige);
}

.footer-trust {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  line-height: 1.5;
}

.footer-trust small {
  display: block;
}

.footer-contact {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.footer-contact small {
  display: block;
}

/* =============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
  animation: none;
}

.wa-float svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* =============================================
   RESPONSIVO - TABLET (max 900px)
   ============================================= */
@media (max-width: 900px) {
  .choose-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .product-highlight {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 24px;
  }

  .product-img-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .product-mini-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .product-mini-grid--single {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* =============================================
   RESPONSIVO - MOBILE (max 600px)
   ============================================= */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 16px;
  }

  .header-logo {
    justify-content: center;
  }

  .header-cta {
    align-items: center;
  }

  .header-social-proof {
    text-align: center;
  }

  .btn-whatsapp {
    font-size: 0.85rem;
    padding: 11px 18px;
  }

  .hero {
    background-attachment: scroll;
    min-height: 90vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .choose-section,
  .product-section,
  .testimonials-section,
  .faq-section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.7rem;
    margin-bottom: 32px;
  }

  .product-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .product-mini-card {
    flex-direction: column;
  }

  .product-mini-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }

  .footer {
    padding: 40px 16px 24px;
  }

  .btn-lg {
    font-size: 0.9rem;
    padding: 14px 20px;
  }

  .footer-trust,
  .footer-contact {
    font-size: 0.75rem;
  }

  .faq-item {
    padding: 20px 16px;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.85rem;
    margin-left: 24px;
  }
}

/* =============================================
   RESPONSIVO - MOBILE PEQUENO (max 400px)
   ============================================= */
@media (max-width: 400px) {
  .logo-text {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .choose-thumbnails {
    gap: 6px;
  }

  .thumb-item img {
    width: 50px;
    height: 66px;
  }
}


              </style>
                        </head>
                        <body>
                            

              <script>
                              
              </script>
                        </body>
                        </html>
                    