/* ============================================================
   BASE & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html {
  background: url('alberto-rodriguez--aCrA9FmT8Y-unsplash.jpg') center/cover fixed;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #FFFFFF;
  background: rgba(46, 125, 50, 0.88);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --navy: #2E7D32;
  --navy-light: #1B5E20;
  --accent: #FFB74D;
  --accent-dark: #e6a030;
  --btn: #FF7043;
  --btn-dark: #e0593a;
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.80);
  --bg-light: #2E7D32;
  --bg-dark: #1B5E20;
  --border: rgba(255,255,255,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --container: 1200px;
  --wa: #25D366;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-primary { background: var(--btn); color: #fff; }
.btn-primary:hover { background: var(--btn-dark); transform: translateY(-1px); }
.btn-accent { background: var(--btn); color: #fff; }
.btn-accent:hover { background: var(--btn-dark); transform: translateY(-1px); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1da851; transform: translateY(-1px); }
.btn-email { background: #FFB74D; color: #1A1A1A; border: 1.5px solid #FFB74D; }
.btn-email:hover { background: #e6a030; border-color: #e6a030; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--bg-dark); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-header-light h2 { color: #fff; }
.section-header-light p { color: rgba(255,255,255,0.7); }

.section-tag {
  display: inline-block;
  background: rgba(255,183,77,0.20);
  color: #FFB74D;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tag-light { background: rgba(255,255,255,0.15); color: #fff; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--btn);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.82rem;
  font-weight: 500;
}
.top-bar a { color: #fff; font-weight: 600; text-decoration: underline; }
.top-bar a:hover { text-decoration: underline; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 94, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text {
  font-size: 1.35rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.logo-highlight { color: var(--accent); }

.nav { margin-left: auto; }
.nav ul {
  display: flex;
  gap: 2px;
  background: transparent;
  padding: 0;
  border: none;
  align-items: center;
}
.nav ul li { position: relative; }
.nav ul li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}
.nav a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  background: transparent;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  display: block;
}
.nav a:hover { background: rgba(255,255,255,0.15); color: #FFB74D; }

.header-cta { flex-shrink: 0; }
.header-ctas-group { display: flex; gap: 8px; margin-left: 8px; flex-shrink: 0; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  margin-left: auto;
  padding: 6px;
  border-radius: 6px;
}
.menu-toggle:hover { background: var(--bg-light); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, rgba(46,125,50,0.82) 0%, rgba(27,94,32,0.82) 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  color: #2E7D32;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.rotating-wrap { display: block; color: var(--accent); }
.rotating-word { transition: opacity 0.3s; }
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius);
  padding: 18px 28px;
  box-shadow: var(--shadow);
  width: fit-content;
}
.stat-item { text-align: center; padding: 0 20px; }
.stat-item strong { display: block; font-size: 1.5rem; font-weight: 900; color: #FFFFFF; }
.stat-item span { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero collage */
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes floatUp2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatUp3 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.hero-collage { position: relative; height: 480px; }
.collage-main {
  position: absolute;
  top: 0; right: 0;
  width: 75%; height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFB74D;
  background: #FFF8F0;
}
.collage-main img { width: 100%; height: 100%; object-fit: cover; }
.collage-float {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
  background: #FFF8F0;
}
.collage-float img { width: 100%; height: 100%; object-fit: cover; }
.cf1 { width: 130px; height: 130px; top: 20px; left: 10px; z-index: 2; animation: floatUp 3.5s ease-in-out infinite; }
.cf2 { width: 110px; height: 110px; bottom: 20px; left: 10px; z-index: 2; animation: floatUp2 4.2s ease-in-out infinite 0.8s; }
.cf3 { width: 120px; height: 120px; bottom: 20px; right: 20px; z-index: 2; animation: floatUp3 3.8s ease-in-out infinite 1.5s; }
.collage-pill {
  position: absolute;
  top: 24px; right: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   BRANDS BAR
   ============================================================ */
.brands-bar {
  padding: 32px 0;
  background: #FFF8F0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.brands-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.brands-track {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.brand-item { opacity: 0.8; transition: opacity 0.2s; }
.brand-item:hover { opacity: 1; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: rgba(255,255,255,0.10);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img-wrap, .product-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #FFF8F0;
}
.product-img-wrap img, .product-img > img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img-wrap > img,
.product-card:hover .product-img > img { transform: scale(1.04); }
.product-label {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  z-index: 1;
}
.label-baby { background: #FF7043; }
.label-home { background: #2E7D32; }

.product-body { padding: 20px; }
.product-body h3 { font-size: 1.05rem; font-weight: 700; color: #FFFFFF; margin-bottom: 6px; }
.product-body p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.product-price { margin-bottom: 16px; }
.product-price .from { font-size: 0.78rem; color: var(--text-muted); }
.product-price strong { font-size: 1.25rem; font-weight: 800; color: #FFB74D; }
.product-price .unit { font-size: 0.78rem; color: var(--text-muted); }

.order-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.18s;
  cursor: pointer;
  font-family: inherit;
}
.order-wa { background: var(--wa); color: #fff; }
.order-wa:hover { background: #1da851; }
.order-email { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.order-email:hover { border-color: rgba(255,255,255,0.5); }
.order-page { background: var(--btn); color: #fff; }
.order-page:hover { background: var(--btn-dark); }

/* Slideshows */
.toy-slideshow, .diaper-slideshow, .monitor-slideshow, .collar-slideshow {
  position: relative;
  width: 100%; height: 100%;
}
/* When slideshow is also the product-img container, force correct height */
.product-img.diaper-slideshow,
.product-img.monitor-slideshow,
.product-img.toy-slideshow { height: 180px; }
.toy-slideshow img, .diaper-slideshow img,
.monitor-slideshow img, .collar-slideshow img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.toy-slideshow img:first-child, .diaper-slideshow img:first-child,
.monitor-slideshow img:first-child, .collar-slideshow img:first-child { opacity: 1; }
.toy-slideshow img.active, .diaper-slideshow img.active,
.monitor-slideshow img.active, .collar-slideshow img.active { opacity: 1; }
.toy-slideshow img.leaving, .diaper-slideshow img.leaving,
.monitor-slideshow img.leaving, .collar-slideshow img.leaving { opacity: 0; }

/* ============================================================
   BEST SELLERS
   ============================================================ */
.bs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.bs-card {
  background: rgba(255,255,255,0.10);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.bs-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.bs-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #FFF8F0;
}
.bs-img-wrap > img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bs-card:hover .bs-img-wrap > img { transform: scale(1.04); }
.bs-rank {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 1;
}
.bs-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.bs-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.bs-body h3 { font-size: 1rem; font-weight: 700; color: #FFFFFF; margin-bottom: 5px; }
.bs-body p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 14px; }
.bs-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.bs-footer .price { font-size: 1.1rem; font-weight: 800; color: #FFB74D; }
.bs-footer .price .unit { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); }
.bs-order-btns { display: flex; gap: 6px; }
.bs-obtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 7px;
  transition: all 0.18s;
  flex-shrink: 0;
}
.bs-wa { background: var(--wa); color: #fff; }
.bs-wa:hover { background: #1da851; }
.bs-email { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.bs-email:hover { border-color: rgba(255,255,255,0.5); }
.bs-page { background: var(--btn); color: #fff; }
.bs-page:hover { background: var(--btn-dark); }

.center-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   ORDER FORM
   ============================================================ */
.inquiry-section { background: var(--bg-light); }
.inquiry-form {
  max-width: 800px;
  margin: 0 auto;
  background: #FFF8F0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #2E7D32; }
.form-group input,
.form-group textarea {
  border: 1.5px solid #d8cfc7;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.92rem;
  font-family: inherit;
  color: #1A1A1A;
  outline: none;
  transition: border-color 0.18s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit-row { display: flex; gap: 12px; flex-wrap: wrap; }
.form-direct-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.form-direct-contact p { font-size: 0.88rem; color: #666; margin: 0; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cat-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-img-wrap { position: relative; height: 320px; overflow: hidden; background: #FFF8F0; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.05); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.88) 0%, rgba(10,37,64,0.2) 60%, transparent 100%);
}
.cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  color: #fff;
}
.cat-icon {
  width: 48px; height: 48px;
  background: rgba(255,193,7,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--accent);
}
.cat-content h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.cat-content p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 10px; line-height: 1.5; }
.cat-price { margin-bottom: 14px; }
.cat-price .from { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.cat-price strong { font-size: 1.2rem; font-weight: 800; color: #FFB74D; }
.cat-price .unit { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap 0.2s;
}
.cat-card:hover .cat-link { gap: 10px; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefit-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  margin-bottom: 80px;
}
.benefit-block:last-child { margin-bottom: 0; }
.benefit-reverse { direction: rtl; }
.benefit-reverse > * { direction: ltr; }
.benefit-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); background: #FFF8F0; }
.benefit-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.benefit-text { display: flex; flex-direction: column; }
.benefit-text .section-tag { margin-bottom: 12px; }
.benefit-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.benefit-text > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.benefit-text .section-order-btns { margin-top: auto; }

.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.step { display: flex; align-items: flex-start; gap: 16px; }
.step-num {
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  flex-shrink: 0;
}
.step strong { display: block; font-weight: 700; color: #FFFFFF; margin-bottom: 2px; }
.step p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.section-order-btns { display: flex; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 80px 0; }
.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.carousel-viewport { flex: 1; overflow: hidden; border-radius: var(--radius); }
.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  min-width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px;
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial-card blockquote {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.avatar-initial {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: #fff;
  flex-shrink: 0;
}
.av-1 { background: #6366f1; }
.av-2 { background: #f59e0b; }
.av-3 { background: #10b981; }
.av-4 { background: #ef4444; }
.t-author strong { display: block; color: #fff; font-weight: 700; font-size: 0.92rem; }
.t-author span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

.carousel-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s;
}
.carousel-arrow:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }

.carousel-dots { display: flex; justify-content: center; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}
.carousel-dot.active { background: var(--accent); transform: scale(1.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: rgba(27, 94, 32, 0.95); color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 { color: #fff; font-weight: 700; margin-bottom: 16px; font-size: 0.92rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col a:hover { color: var(--accent); }

.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.social-links a:hover { background: var(--btn); color: #fff; border-color: var(--btn); }

.footer-newsletter p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; margin-bottom: 20px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: inherit;
  font-size: 0.87rem;
  outline: none;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--btn); }

.footer-contact-links { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-contact-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  background: var(--wa);
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  font-weight: 600;
  font-size: 0.88rem;
  animation: floatUp2 3.5s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.5); animation: none; }
.wa-float-label { white-space: nowrap; }

/* ============================================================
   FADE-IN SCROLL ANIMATION
   ============================================================ */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in-scroll.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-block { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.7rem; }

  .header-inner { height: 60px; }
  .nav {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: #1B5E20;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-shadow: var(--shadow);
    padding: 16px;
    z-index: 99;
  }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; gap: 4px; }
  .header-cta { display: none; }
  .header-ctas-group { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: 48px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-collage { height: 300px; }
  .hero-stats { padding: 14px 20px; }
  .stat-item { padding: 0 14px; }

  .products-grid { grid-template-columns: 1fr; }
  .bs-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }

  .benefit-block { grid-template-columns: 1fr; gap: 32px; }
  .benefit-reverse { direction: ltr; }

  .inquiry-form { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }

  .carousel-wrap { gap: 8px; }
  .carousel-arrow { width: 36px; height: 36px; }
  .testimonial-card { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }

  .wa-float { bottom: 20px; right: 16px; padding: 11px 16px 11px 14px; }
  .wa-float-label { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .hero-collage { display: none; }
  .hero-stats { width: 100%; justify-content: center; }
  .stat-item { flex: 1; }
  .form-submit-row { flex-direction: column; }
  .form-submit-row .btn { justify-content: center; width: 100%; }
}
