/* =============================================
   VERDEO – style.css
   Vanilla CSS · Mobile-first · Optimized
   ============================================= */

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

:root {
  /* Colors */
  --green-primary: #239f6b;
  --green-dark: #1a8257;
  --green-deep: #0b2419;
  --green-deep2: #091d15;
  --green-mid: #12482c;
  --green-badge: #196b47;
  --green-tag-bg: rgba(35, 159, 107, 0.15);
  --green-tag-text: #1a8257;

  --bg-light: #F3FAF5;
  --bg-white: #FFFFFF;
  --bg-section: #F8FDF9;

  --text-primary: #0D1A10;
  --text-secondary: #4A5568;
  --text-muted: #6B7280;
  --text-white: #FFFFFF;

  --border: #E5EAE7;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);

  /* Typography */
  --font: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py: clamp(64px, 8vw, 112px);
  --container: 1200px;
  --gap: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

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

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

svg {
  display: block;
}

/* ── 2. Layout Utilities ─────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 48px);
}

/* ── 3. Reveal Animations ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

.reveal--right {
  transform: translateX(32px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* ── 4. Shared Components ────────────────────── */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    background var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-primary);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.35);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.45);
}

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

.btn--outline:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-2px);
}

/* Badges / section tags */
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--green-tag-bg);
  color: var(--green-tag-text);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 16px;
}

.section-tag {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
}

/* Section header group */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── 5. Navbar ───────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 234, 231, 0);
  transition: border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.logo-image {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── 6. Hero ─────────────────────────────────── */
.hero {
  background: var(--bg-light);
  padding-top: calc(72px + clamp(24px, 3vw, 40px));
  padding-bottom: var(--section-py);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__content {
  max-width: 540px;
}

.hero__title {
  font-size: clamp(2.125rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero__title .accent {
  color: var(--green-primary);
}

.hero__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

/* Trust row */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--green-tag-bg);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Hero visual */
.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.hero__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #2C3E50 0%, #3D566E 50%, #1A252F 100%);
  box-shadow: var(--shadow-lg);
  position: relative;
  object-fit: cover;
  display: block;
}

/* Illustrated shelf scene */
.shelf-scene {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(160deg, #1a2a1e 0%, #2d4a30 40%, #1e3b24 100%);
}

.shelf-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  justify-content: center;
  flex: 1;
}

.shelf-bar {
  height: 8px;
  background: linear-gradient(180deg, #E07B00, #B85E00);
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.product-bottle {
  border-radius: 4px 4px 6px 6px;
  background: linear-gradient(160deg, #2ECC71, #145A32);
  position: relative;
  flex-shrink: 0;
}

.product-bottle--spray {
  width: 28px;
  height: 68px;
  border-radius: 8px 8px 4px 4px;
}

.product-bottle--spray::before {
  content: '';
  position: absolute;
  top: -14px;
  right: 4px;
  width: 8px;
  height: 16px;
  background: #555;
  border-radius: 4px 4px 0 0;
}

.product-bottle--dark {
  width: 32px;
  height: 72px;
  background: linear-gradient(160deg, #2C3E50, #1A252F);
  border-radius: 6px;
}

.product-bottle--round {
  width: 36px;
  height: 56px;
  background: linear-gradient(160deg, #2C3E50, #1A252F);
  border-radius: 18px 18px 8px 8px;
  border: 3px solid #27AE60;
}

.product-jug {
  width: 52px;
  height: 64px;
  background: linear-gradient(160deg, #ECF0F1, #BDC3C7);
  border-radius: 8px 8px 4px 4px;
  flex-shrink: 0;
}

.product-jug::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 12px;
  background: #BDC3C7;
  border-radius: 4px 4px 0 0;
}

.product-jug {
  position: relative;
}

/* Hero badge overlay */
.hero__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hero__badge-icon {
  width: 36px;
  height: 36px;
  background: var(--green-tag-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}

.hero__badge-icon svg {
  width: 18px;
  height: 18px;
}

.hero__badge-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
}

.hero__badge-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ── 7. Catalog Section ───────────────────────── */
.catalog {
  padding: var(--section-py) 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.catalog::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.catalog::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(39, 174, 96, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.catalog .container {
  position: relative;
  z-index: 1;
}

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

.product-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-white);
  border: 1.5px solid rgba(46, 204, 113, 0.15);
  box-shadow: 0 4px 24px rgba(46, 204, 113, 0.03);
  transition: transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(46, 204, 113, 0.15);
  border-color: rgba(39, 174, 96, 0.4);
}

.product-card--tall .product-card__img {
  aspect-ratio: 1 / 1.15;
}

.product-card__img {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 16px;
  background: linear-gradient(135deg, #2C7873 0%, #6FB98F 40%, #D4A853 100%);
  position: relative;
  overflow: hidden;
}

/* Each card gets a unique gradient */
.product-card__img--quim {
  background: url('img/quimicos.png') center/cover no-repeat;
}

.product-card__img--equip {
  background: url('img/equipos.png') center/cover no-repeat;
}

.product-card__img--trap {
  background: url('img/trampas.png') center/cover no-repeat;
}

/* Subtle animated sheen on cards */
.product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: shimmer 8s ease-in-out infinite alternate;
}

@keyframes shimmer {
  0% {
    transform: translate(-10%, -10%);
  }

  100% {
    transform: translate(10%, 10%);
  }
}

.product-card__body {
  padding: 24px 20px 28px;
}

.product-card__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.tag-icon {
  width: 16px;
  height: 16px;
  color: var(--green-primary);
}

.product-card__title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.25;
}

.product-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── 8. About Section ────────────────────────── */
.about {
  background: var(--bg-section);
  padding: var(--section-py) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.about__content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-tag-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Event card */
.about__event {
  display: flex;
  justify-content: flex-end;
}

.event-card {
  background: linear-gradient(155deg, var(--green-deep) 0%, #0A3020 50%, #061A10 100%);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--text-white);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.event-card__tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(46, 204, 113, 0.2);
  color: var(--green-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.event-card__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.event-card__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

.event-card__details {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  flex: 1;
}

.event-detail svg {
  width: 18px;
  height: 18px;
  color: var(--green-primary);
  flex-shrink: 0;
}

.event-detail__label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.event-detail__value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-white);
}

.btn--event {
  width: 100%;
  justify-content: center;
  background: var(--bg-white);
  color: var(--text-primary);
  border-radius: 12px;
  font-weight: 700;
}

.btn--event:hover {
  background: var(--green-primary);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* ── 9. Contact Section ───────────────────────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg-white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: var(--container);
  margin: 0 auto;
  width: calc(100% - clamp(32px, 10vw, 96px));
}

.contact__info {
  background: linear-gradient(155deg, var(--green-deep) 0%, #0B2B1A 60%, #071A10 100%);
  padding: clamp(32px, 5vw, 56px);
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact__info::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
}

.contact__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__icon {
  width: 44px;
  height: 44px;
  background: rgba(46, 204, 113, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
}

.contact__icon svg {
  width: 20px;
  height: 20px;
}

.contact__item-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.contact__item-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.contact__phone {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-primary);
  transition: opacity var(--duration);
}

.contact__phone:hover {
  opacity: 0.8;
}

/* Map */
.contact__map {
  position: relative;
  min-height: 400px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.btn--whatsapp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--green-primary);
  color: var(--text-white);
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.btn--whatsapp svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.btn--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(46, 204, 113, 0.55);
}

/* ── 10. Footer ──────────────────────────────── */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 40px;
  align-items: start;
}

.footer__logo {
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
}

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

.footer__heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}

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

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer__contact-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__contact-list a {
  color: var(--text-muted);
  transition: color var(--duration);
}

.footer__contact-list a:hover {
  color: var(--green-primary);
}

.footer__bottom {
  border-top: 1px solid var(--border);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--text-muted);
  transition: background var(--duration), color var(--duration);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--green-primary);
  color: var(--text-white);
}

/* ── 11. Responsive ───────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__event {
    justify-content: flex-start;
  }

  .event-card {
    max-width: 100%;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .contact__map {
    min-height: 360px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar__nav {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    max-width: 80vw;
    background: var(--bg-white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 96px 28px 32px;
    transform: translateX(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), visibility 0.4s;
    z-index: 999;
  }

  .navbar__nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    text-align: right;
  }

  .nav-link {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 12px 0;
  }

  .nav-link::after {
    left: auto;
    right: 0;
    transform-origin: right;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }

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

  .hero__visual {
    justify-content: center;
    order: -1;
  }

  .hero__img-wrapper {
    max-width: 100%;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__desc {
    max-width: 100%;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

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

  .product-card--tall .product-card__img {
    aspect-ratio: 1;
  }

  .footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .event-card__details {
    flex-direction: column;
    gap: 10px;
  }

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

  .contact__inner {
    border-radius: 16px;
  }
}

/* ── 12. Reduced Motion ──────────────────────── */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .btn,
  .nav-link,
  .product-card {
    transition: none !important;
    animation: none !important;
  }

  .hero__badge {
    animation: none;
  }

  .product-card__img::after {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ── 13. Catalog Page & Modal ────────────────── */
.catalog-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.catalog-category-box {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}

.catalog-category-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.catalog-category-header-text {
  flex: 1;
}

.catalog-category-box h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-category-box h3 svg:not(.chevron-icon) {
  width: 24px;
  height: 24px;
  color: var(--green-primary);
}

.catalog-category-desc {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.chevron-icon {
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.catalog-category-box.expanded .chevron-icon {
  transform: rotate(180deg);
}

.product-list-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-out;
}

.catalog-category-box.expanded .product-list-wrapper {
  grid-template-rows: 1fr;
}

.product-list-inner {
  overflow: hidden;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.product-item {
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--bg-section);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-item:hover {
  background: var(--bg-white);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-item-name {
  font-weight: 600;
  color: var(--text-primary);
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--bg-white);
  width: 90%;
  max-width: 500px;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.modal.active .modal__content {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-section);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.modal__close:hover {
  background: var(--border);
  color: var(--text-primary);
}

.modal__tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--green-tag-bg);
  color: var(--green-tag-text);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.modal__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.modal__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.btn--whatsapp-full {
  width: 100%;
  justify-content: center;
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp-full:hover {
  background: #128C7E;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.catalog-cta {
  margin-top: 36px;
  padding: 24px 32px;
  background: rgba(46, 204, 113, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(46, 204, 113, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.catalog-cta__text {
  color: var(--green-dark);
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0;
}

.catalog-cta__btn {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.catalog-cta__btn:hover {
  background: #128C7E;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .catalog-cta {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.modal__tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  margin-top: -4px;
}

.modal__pest-tag {
  background: var(--bg-section);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-transform: capitalize;
}

/* Search Bar */
.catalog-search-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
}

.catalog-search-wrapper .search-icon {
  position: absolute;
  left: 20px;
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.catalog-search-input {
  width: 100%;
  padding: 18px 20px 18px 56px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all var(--duration) var(--ease);
}

.catalog-search-input::placeholder {
  color: #adb5bd;
}

.catalog-search-input:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.15);
}

/* ── WhatsApp Floating Button ─────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-bounce 2.5s ease-in-out infinite;
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65);
  animation: none;
}

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}