.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(13, 122, 95, 0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 30%, rgba(212, 180, 92, 0.18), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--background));
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  z-index: 0;
}

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

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 240, 224, 0.92), rgba(245, 240, 224, 0.82));
  content: "";
  z-index: 1;
}

.hero-simple::after {
  background: linear-gradient(180deg, rgba(245, 240, 224, 0.85), rgba(245, 240, 224, 0.7));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
  padding: 4rem 0 5rem;
}

.hero-simple .hero-inner {
  display: block;
  padding-bottom: 5rem;
}

.hero-simple .hero-copy {
  max-width: 42rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.hero-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-eyebrow {
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.hero-eyebrow-line {
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
}


.hero h1 {
  max-width: 12ch;
  margin-top: 1.75rem;
  color: var(--primary);
  font-size: clamp(2.75rem, 4.2vw + 1rem, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero-simple h1 {
  max-width: 15ch;
  font-size: clamp(2.75rem, 4.2vw + 1rem, 5.25rem);
}

.hero h1 em {
  color: var(--accent-strong);
  font-weight: 500;
}

.text-primary {
  color: var(--primary);
}

.hero-subtitle,
.section-subtitle,
.muted {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 28rem;
  margin-top: 1.75rem;
  font-size: 1.125rem;
  line-height: 1.65;
}

.hero-simple .hero-subtitle {
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-lift);
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(245, 240, 224, 0.72);
  color: var(--foreground);
  backdrop-filter: blur(10px);
}

.btn-whatsapp {
  background: #128c7e;
  color: #ffffff;
  box-shadow: var(--shadow-lift);
}

.hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 32.5rem;
  margin-inline: auto;
}

.hero-visual-border {
  pointer-events: none;
  position: absolute;
  inset: -0.75rem;
  display: none;
  translate: 0.5rem 0.5rem;
  border: 1px solid rgba(212, 180, 92, 0.5);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
}

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

.hero-card-caption {
  position: absolute;
  inset: 0 0 auto auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(212, 180, 92, 0.3);
  border-left: 1px solid rgba(212, 180, 92, 0.3);
  background: var(--background);
  padding: 1.5rem 0.75rem;
}

.hero-card-caption span:first-child {
  color: var(--primary);
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-caption-line {
  width: 1px;
  height: 2.5rem;
  background: rgba(6, 78, 59, 0.4);
}

.hero-caption-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--primary);
}

.hero-number {
  pointer-events: none;
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  color: rgba(6, 78, 59, 0.25);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.2vw + 1rem, 5.25rem);
  font-style: italic;
  font-weight: 500;
}

.harvest-note {
  margin-top: 1.25rem;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.55;
}

.harvest-note span {
  color: var(--primary);
  font-weight: 600;
}

.hero-corner {
  pointer-events: none;
  position: absolute;
  left: -2rem;
  bottom: -2rem;
  display: none;
  width: 6rem;
  height: 6rem;
  border-bottom: 1px solid rgba(212, 180, 92, 0.6);
  border-left: 1px solid rgba(212, 180, 92, 0.6);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-height: 10.75rem;
  margin-top: 2.5rem;
  list-style: none;
}

.stat-box {
  border: 1px solid rgba(6, 78, 59, 0.12);
  border-radius: 1rem;
  background: rgba(245, 240, 224, 0.6);
  padding: 0.75rem;
  backdrop-filter: blur(8px);
}

.stat-icon,
.card-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 1rem;
  background: rgba(6, 78, 59, 0.1);
  color: var(--primary);
  font-size: 1.15rem;
}

.section {
  padding: 5rem 0;
}

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

.section-head {
  max-width: 42rem;
}

.section-head-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.section-title {
  margin-top: 0.5rem;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.1;
}

.section-subtitle {
  margin-top: 1rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: var(--card);
  box-shadow: none;
}

.card-pad {
  padding: 1.5rem;
}

.card:hover {
  box-shadow: var(--shadow-lift);
}

.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--secondary);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .card-image img {
  transform: scale(1.04);
}

.variety-card-image {
  aspect-ratio: 4 / 5;
}

.variety-card-image img {
  object-position: center center;
}

.variety-card .card-pad {
  min-height: 12.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.card-text {
  margin-top: 0.55rem;
  color: var(--muted-foreground);
  font-size: 0.94rem;
  line-height: 1.65;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--foreground);
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
}

.list-check {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 1.45rem;
  color: rgba(6, 78, 59, 0.92);
  font-size: 0.9rem;
  line-height: 1.5;
}

.list-check li::before {
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.price {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
}

.highlight {
  border-color: rgba(6, 78, 59, 0.3);
  background: rgba(6, 78, 59, 0.05);
  box-shadow: var(--shadow-lift);
}

.cta-panel {
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 2.5rem;
}

.cta-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.cta-panel .section-title,
.cta-panel .section-subtitle {
  color: var(--primary-foreground);
}

.cta-panel .section-subtitle {
  opacity: 0.76;
}

.faq {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.faq details + details {
  border-top: 1px solid var(--border);
}

.faq summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  font-weight: 800;
}

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

.faq details[open] summary {
  background: var(--cream);
}

.faq p {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.94rem;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

label span {
  display: inline-block;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: var(--background);
  color: var(--foreground);
  padding: 0.9rem 1rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
}

.field-error {
  display: none;
  margin-top: 0.4rem;
  color: var(--danger);
  font-size: 0.8rem;
}

.field-error.is-visible {
  display: block;
}

.form-message {
  display: none;
  margin-top: 1.25rem;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 0.94rem;
  line-height: 1.55;
}

.form-message.is-visible {
  display: block;
}

.form-message.success {
  border: 1px solid rgba(6, 78, 59, 0.2);
  background: rgba(6, 78, 59, 0.07);
}

.form-message.error {
  border: 1px solid rgba(180, 35, 24, 0.18);
  background: rgba(180, 35, 24, 0.07);
  color: var(--danger);
}

.cookie-banner {
  position: fixed;
  inset: auto 0.75rem 0.75rem;
  z-index: 60;
  display: none;
  max-width: 48rem;
  margin: auto;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: rgba(245, 240, 224, 0.96);
  box-shadow: var(--shadow-lift);
  padding: 1rem;
  backdrop-filter: blur(14px);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.floating-actions {
  position: fixed;
  right: calc(1rem + env(safe-area-inset-right));
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  gap: 0.75rem;
}

.float-button {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-lift);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.float-button:hover {
  opacity: 0.9;
}

.float-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.float-whatsapp {
  width: 3rem;
  height: 3rem;
  background: #0e6b60;
  color: #ffffff;
}

.float-whatsapp svg {
  width: 1.5rem;
  height: 1.5rem;
}

.scroll-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 46rem;
  background: var(--card);
  text-align: left;
  font-size: 0.9rem;
}

.table th,
.table td {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1rem;
}

.table th {
  background: var(--cream);
  color: var(--muted-foreground);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-article {
  width: min(100% - 2.5rem, 48rem);
  margin-inline: auto;
  padding: 3rem 0;
}

.legal-box {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: var(--cream);
  padding: 1.5rem;
}

.legal-section {
  margin-top: 2.5rem;
}

.legal-section h2 {
  font-size: 1.6rem;
}

.legal-section p,
.legal-section li {
  color: var(--muted-foreground);
  font-size: 0.94rem;
  line-height: 1.75;
}

.legal-section p + p,
.legal-section ul,
.legal-section ol {
  margin-top: 0.75rem;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.25rem;
}

@media (min-width: 640px) {
  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 5.75rem;
  }

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

@media (min-width: 768px) {
  .section-head-row {
    flex-direction: row;
    align-items: flex-end;
  }

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

  .cta-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    gap: 4rem;
    padding-top: 6rem;
    padding-bottom: 7rem;
  }

  .hero-home .hero-copy {
    grid-column: span 6 / span 6;
  }

  .hero-home .hero-visual-wrap {
    grid-column: span 6 / span 6;
  }

  .hero-simple .hero-inner {
    display: block;
    padding-top: 6rem;
    padding-bottom: 7rem;
  }

  .hero-visual-border,
  .hero-corner {
    display: block;
  }

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

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

.hero-note { margin-top: 1rem; }
.cta-actions { justify-content: flex-end; margin-top: 0; }

.mt-2 { margin-top: 1rem; }
.mt-section { margin-top: 2rem; }
.mt-grid { margin-top: 3rem; }
.no-list { list-style: none; }
.card-headline-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.card-tagline { margin-top: 1rem; font-size: 0.82rem; }
.step-number { font-size: 2.3rem; }
.season-title { font-size: 1.15rem; }
.season-kinds { margin-top: 0.75rem; font-weight: 800; }
.container-narrow { max-width: 56rem; }

.chef-signal {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.chef-avatars {
  display: flex;
  margin-left: 0.15rem;
}

.chef-avatars img {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: -0.45rem;
  border: 2px solid var(--background);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.chef-avatars img:first-child {
  margin-left: 0;
}

@media (min-width: 640px) {
  .floating-actions {
    right: calc(1.5rem + env(safe-area-inset-right));
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }

  .float-whatsapp {
    width: 3.5rem;
    height: 3.5rem;
  }

  .float-whatsapp svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}
