:root {
  --bg: #fff8f2;
  --bg-soft: #fff3e8;
  --surface: #ffffff;
  --text: #2a1d1b;
  --muted: #6e5e5b;
  --primary: #b54744;
  --primary-dark: #8f2d2d;
  --secondary: #f0a42a;
  --green: #25d366;
  --green-dark: #1fa855;
  --border: rgba(42, 29, 27, 0.08);
  --shadow: 0 18px 45px rgba(112, 53, 36, 0.10);
  --radius: 28px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240,164,42,0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(181,71,68,0.14), transparent 30%),
    linear-gradient(180deg, #fffaf6 0%, #fff4ec 100%);
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 242, 0.86);
  border-bottom: 1px solid rgba(42, 29, 27, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--text);
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow);
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-cta {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: var(--text);
  color: white !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: var(--text);
}

.hero {
  padding: 4rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(181, 71, 68, 0.10);
  color: var(--primary-dark);
  border: 1px solid rgba(181, 71, 68, 0.10);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1,
.section-heading h2,
.contact-section h2 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--primary-dark);
  background: white;
  border: 1px solid rgba(181,71,68,0.15);
}

.btn-whatsapp {
  width: 100%;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 34px rgba(37,211,102,0.18);
}

.btn-whatsapp.large {
  width: auto;
  min-width: 200px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-stats article,
.hero-card,
.category-card,
.product-card,
.benefit-card,
.contact-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 1rem;
  border-radius: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: absolute;
}

.hero-card-main {
  inset: 0 3rem 4rem 0;
  background: linear-gradient(145deg, #fff4df, #ffe7ea 40%, #fff9f3);
}

.hero-card-small {
  right: 0;
  bottom: 0;
  width: 230px;
  padding: 1rem;
  background: white;
}

.hero-card-small p {
  margin: 0.6rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(42,29,27,0.82);
  color: white;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.wayuu-pattern {
  background-image:
    linear-gradient(45deg, rgba(181,71,68,0.18) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(240,164,42,0.18) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(46,99,93,0.18) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(145,80,161,0.18) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.bag-illustration {
  position: relative;
  margin: auto;
}

.bag-main {
  width: 290px;
  height: 360px;
  top: 80px;
}

.bag-side {
  width: 96px;
  height: 120px;
}

.bag-card {
  width: 145px;
  height: 180px;
}

.bag-illustration::before,
.bag-illustration::after {
  content: "";
  position: absolute;
}

.bag-illustration::before {
  inset: 26px 18px 0;
  border-radius: 28px 28px 34px 34px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.25) 0 10px,
      rgba(255,255,255,0.05) 10px 20px
    ),
    linear-gradient(180deg, #cc5b52, #f0a42a 48%, #6c3b86);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.25);
}

.bag-illustration::after {
  width: 54%;
  height: 44px;
  left: 23%;
  top: 0;
  border: 6px solid #8f2d2d;
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
}

.bag-recamada::before {
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.85) 0 5px, transparent 6px),
    radial-gradient(circle at 80% 28%, rgba(255,255,255,.75) 0 5px, transparent 6px),
    linear-gradient(180deg, #9150a1, #ef8c3d 55%, #cc5b52);
}

.bag-piedras::before {
  background:
    radial-gradient(circle at 20% 26%, rgba(255,255,255,.95) 0 4px, transparent 5px),
    radial-gradient(circle at 35% 44%, rgba(255,255,255,.85) 0 4px, transparent 5px),
    radial-gradient(circle at 65% 34%, rgba(255,255,255,.85) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 55%, rgba(255,255,255,.85) 0 4px, transparent 5px),
    linear-gradient(180deg, #2e635d, #f0a42a 55%, #6c3b86);
}

.bag-cintas::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.25) 0 20%, transparent 20% 40%, rgba(255,255,255,.25) 40% 60%, transparent 60% 80%, rgba(255,255,255,.25) 80% 100%),
    linear-gradient(180deg, #f0a42a, #cc5b52 55%, #2e635d);
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,243,232,.8));
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
  display: block;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.2rem 0 0.6rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}

.category-grid,
.product-grid,
.benefit-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

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

.category-card,
.benefit-card {
  border-radius: 24px;
  padding: 1.5rem;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(181,71,68,.18), rgba(240,164,42,.28));
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.category-card h3,
.benefit-card h3,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.category-card p,
.benefit-card p,
.contact-card p,
.product-body p {
  color: var(--muted);
  line-height: 1.75;
}

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

.product-card {
  overflow: hidden;
  border-radius: 28px;
}

.product-image {
  min-height: 240px;
  display: grid;
  place-items: center;
}

.theme-one { background: linear-gradient(135deg, #fff0df, #ffe7d6); }
.theme-two { background: linear-gradient(135deg, #f5e6ff, #ffe6f1); }
.theme-three { background: linear-gradient(135deg, #e5fff6, #fff4d8); }
.theme-four { background: linear-gradient(135deg, #fff8d8, #ffe8ef); }

.product-body {
  padding: 1.4rem;
}

.pill {
  display: inline-block;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(181,71,68,0.09);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.product-body h3 {
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 1.2rem;
}

.product-meta strong {
  font-size: 1.25rem;
}

.product-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.contact-section {
  padding-top: 2rem;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.contact-card {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(236,255,243,0.94));
}

.footer {
  padding: 1rem 0 2.4rem;
}

.footer-wrap {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero-visual {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 0.8rem 0.4rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-stats,
  .category-grid,
  .product-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .hero-card-main {
    inset: 0 0 5rem 0;
  }

  .hero-card-small {
    width: 72%;
  }

  .bag-main {
    width: 230px;
    height: 300px;
    top: 70px;
  }
}
