/* =========================
   RESET + BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --green-900: #1b4332;
  --green-800: #2d6a4f;
  --green-700: #40916c;
  --green-500: #52b788;
  --green-400: #74c69d;
  --bg-soft: #f7f8f8;
  --text: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 16px;

  /* Retro look */
  --retro-overlay: 0.36;
  --retro-color: 96, 58, 36;
  --grain-opacity: 0.08;
  --vignette-opacity: 0.22;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}

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

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

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.section-lead {
  color: var(--text-light);
  margin: 0;
  font-size: 1.05rem;
}

.section-intro {
  text-align: center;
  margin-bottom: 2rem;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

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

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
}

.btn-lg {
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 1.7rem;
  font-size: 1.05rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-primary {
  background: var(--green-800);
  color: #fff;
}

.btn-outline {
  border: 1.5px solid #fff;
  color: #fff;
  background: transparent;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-weight: 700;
  font-size: 0.98rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.main-nav > a:not(.btn) {
  font-weight: 500;
  color: #111827;
}

.hamburger,
.mobile-menu {
  display: none !important;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 74px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000 url("images/hero-shop.jpg") center center / cover no-repeat;
  filter: sepia(0.2) saturate(0.9) contrast(0.95);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-bg::before {
  background: rgba(var(--retro-color), calc(var(--retro-overlay) * 0.7));
  mix-blend-mode: multiply;
}

.hero-bg::after {
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,var(--vignette-opacity)) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(var(--retro-color), calc(var(--retro-overlay) * 0.55)),
    rgba(0,0,0,0.38)
  );
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: var(--grain-opacity);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0.5px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(0,0,0,.28) 0.5px, transparent 1px),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,.22) 0.5px, transparent 1px);
  background-size: 3px 3px, 4px 4px, 5px 5px;
  mix-blend-mode: soft-light;
}

.hero-content,
.scroll-indicator {
  position: relative;
  z-index: 4;
}

.hero-content {
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.hero-title {
  margin: 0 0 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 6vw, 4.6rem);
  line-height: 1.05;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  margin: 0 0 1.4rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
}

.hero-cta-group {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 14px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  display: block;
  position: relative;
}

.scroll-indicator span::after {
  content: "";
  width: 4px;
  height: 7px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
  animation: wheel 1.5s infinite;
}

@keyframes wheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* =========================
   SECTIONS GENERIC
========================= */
.section-value,
.section-products,
.section-dynamic,
.section-reviews,
.section-map {
  padding: 5rem 0;
}

/* =========================
   VALUE
========================= */
.section-value { background: #fff; }

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

.value-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.value-icon {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}

.value-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.06rem;
}

.value-card-text {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* =========================
   PRODUCTS
========================= */
.section-products {
  background: linear-gradient(180deg, var(--green-900), #163a2c);
  color: #fff;
}

.section-intro--light .section-lead {
  color: rgba(255,255,255,0.86);
}

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

.product-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(var(--retro-color), var(--retro-overlay));
  mix-blend-mode: multiply;
}

.product-card--large {
  grid-column: span 2;
}

.product-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: sepia(0.2) saturate(0.9) contrast(0.95);
}

.product-label {
  padding: 0.75rem 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.product-label--highlight {
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

/* =========================
   DYNAMIC
========================= */
.section-dynamic { background: #fff; }

.section-dynamic-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.dynamic-visual {
  position: relative;
}

.dynamic-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  background: rgba(var(--retro-color), var(--retro-overlay));
  mix-blend-mode: multiply;
}

.dynamic-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: sepia(0.2) saturate(0.9) contrast(0.95);
}

/* =========================
   REVIEWS
========================= */
.section-reviews { background: var(--bg-soft); }

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

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.review-text {
  margin: 0 0 1rem;
  color: #374151;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.review-name { display: block; }

.review-source {
  color: var(--text-light);
  font-size: 0.9rem;
}

.reviews-cta {
  text-align: center;
  margin-top: 1.2rem;
}

.reviews-cta .btn-outline {
  color: var(--green-900);
  border-color: var(--green-900);
}

/* =========================
   MAP
========================= */
.section-map { background: #fff; }

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-cta {
  text-align: center;
  margin-top: 1rem;
}

/* =========================
   FINAL CTA
========================= */
.section-final-cta {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: sepia(0.2) saturate(0.9) contrast(0.95);
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 0.85rem;
  text-align: center;
}

.final-cta-title {
  font-family: "Playfair Display", serif;
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.final-cta-lead {
  margin: 0 auto 0.6rem;
  max-width: 740px;
  color: rgba(255,255,255,0.92);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 1.35rem 0;
}

.footer-inner {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
}

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

.footer-name { font-weight: 700; }

.footer-address {
  font-style: normal;
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  z-index: 2000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card--large { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .section-dynamic-inner { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem 0;
    min-height: auto;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    gap: 0.7rem;
  }

  .logo-text { display: none; }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-cta-group { justify-content: center; }
}

@media (max-width: 640px) {
  .section-value,
  .section-products,
  .section-dynamic,
  .section-reviews,
  .section-map {
    padding: 3.6rem 0;
  }

  .value-grid,
  .products-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .product-card--large { grid-column: auto; }
  .product-img { height: 230px; }
  .dynamic-img { height: 280px; }

  .btn-lg,
  .btn-xl {
    width: 100%;
  }

  .hero-cta-group { width: 100%; }
}