:root {
  --color-primary: #0f7b6c;
  --color-primary-dark: #0b5b4f;
  --color-secondary: #f2b705;
  --color-bg: #f5f9f8;
  --color-text: #203131;
  --color-muted: #5f7c7b;
  --color-white: #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --shadow-card: 0 18px 35px rgba(15, 123, 108, 0.1);
  --max-width: 1080px;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.icon {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 249, 248, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 123, 108, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 132px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.brand-label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.brand-parent {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.brand-product {
  font-size: 1.05rem;
  color: var(--color-primary);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  font-weight: 500;
  flex-wrap: wrap;
}

.site-nav .btn {
  padding: 0.6rem 1.1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  box-shadow: 0 12px 30px rgba(15, 123, 108, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 123, 108, 0.3);
}

.btn-outline {
  border: 1px solid rgba(15, 123, 108, 0.35);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(15, 123, 108, 0.08);
}

.btn-text {
  padding: 0.7rem 0;
  color: var(--color-primary);
  font-weight: 600;
}

.hero {
  padding-top: 6rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
  grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 1fr);
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 123, 108, 0.1);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-text p {
  margin: 1.3rem 0;
  color: rgba(32, 49, 49, 0.85);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-bullets {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: var(--color-muted);
}

.hero-bullets li::before {
  content: '\2022';
  color: var(--color-secondary);
  margin-right: 0.5rem;
}

.hero-media img {
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--color-muted);
}

.card-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.card-body {
  padding: 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.card-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.card-body p {
  color: var(--color-muted);
}

.card-action {
  width: 100%;
  margin-top: 0.6rem;
}

.card-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 123, 108, 0.18);
}

.card-grid.small {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card-grid.small .card img {
  aspect-ratio: 1;
}

.instagram {
  background: var(--color-white);
}

.instagram-embed {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}

.instagram-embed iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
}

.presentations-lead {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 2.5rem;
}

.presentations-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.presentations-copy p {
  color: var(--color-muted);
}

.presentations-figure img {
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.product-list .card {
  text-align: left;
}

.reviews {
  background: linear-gradient(135deg, rgba(15, 123, 108, 0.12), rgba(15, 123, 108, 0.04));
  padding: 3.5rem 0;
}

.reviews-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.reviews-summary {
  display: grid;
  gap: 1rem;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reviews-summary h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-primary);
}

.reviews-rating .stars {
  letter-spacing: 0.2rem;
  font-size: 1.2rem;
}

.reviews-cards {
  display: grid;
  gap: 1.2rem;
}

.review-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.8rem;
}

.review-card p {
  color: rgba(32, 49, 49, 0.85);
  font-size: 0.98rem;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
}

.cart-summary {
  margin-top: 2.5rem;
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
}

.cart-summary h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.cart-items {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  background: rgba(15, 123, 108, 0.06);
}

.cart-item-name {
  font-weight: 600;
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.cart-remove {
  background: none;
  border: 0;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.cart-remove:hover {
  text-decoration: underline;
}

.cart-empty {
  color: var(--color-muted);
}

.cart-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.cart-count {
  font-size: 1.2rem;
}

.cart-checkout[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
  transform: none;
}

.contact {
  background: linear-gradient(135deg, rgba(15, 123, 108, 0.1), rgba(15, 123, 108, 0.05));
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-contact,
.footer-social {
  display: grid;
  gap: 0.6rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--color-white);
  font-weight: 600;
  box-shadow: 0 18px 35px rgba(18, 140, 126, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 20;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(18, 140, 126, 0.35);
}

@media (max-width: 900px) {
  .site-nav {
    justify-content: flex-end;
  }

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

  .hero-media {
    order: -1;
  }

  .presentations-lead {
    grid-template-columns: 1fr;
  }

  .presentations-figure {
    order: -1;
    justify-self: center;
  }

  .hero-nutrition {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 5rem;
  }

  .site-nav {
    flex: 1 1 100%;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero-nutrition {
    grid-template-columns: 1fr;
  }

  .site-nav .btn {
    padding: 0.5rem 0.9rem;
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .brand {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 1.1rem;
  }

  .instagram-embed iframe {
    min-height: 520px;
  }

  .floating-whatsapp {
    left: 1.1rem;
    right: 1.1rem;
    justify-content: center;
  }
}
.ingredient-intro {
  margin-bottom: 2.5rem;
  display: grid;
  gap: 2rem;
}

.ingredient-intro ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--color-muted);
}

.ingredient-intro ul li::before {
  content: '\2022';
  color: var(--color-secondary);
  margin-right: 0.5rem;
}

.ingredient-highlights {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ingredient-highlights article {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 1.3rem;
  display: grid;
  gap: 0.6rem;
}

.ingredient-highlights h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.ingredient-highlights p {
  color: var(--color-muted);
  font-size: 0.92rem;
}
