﻿/* ==========================================================================
   ADCICLE â€” Corporate palette
   Lime #6DB33F Â· Forest #38761D / #2E5A1C Â· Slate #1A252C Â· Silver #F4F6F7
   Headings/logo: Montserrat Â· Body: Inter
   ========================================================================== */

.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;background:var(--lime);color:#fff;padding:8px 16px;z-index:9999;border-radius:4px}.skip-link:focus{left:12px;top:12px;width:auto;height:auto}
:root {
  /* Palette */
  --lime: #75a72c;
  --lime-dim: rgba(117, 167, 44, 0.16);
  --forest: #2e5021;
  --forest-deep: #23401a;
  --forest-dim: rgba(46, 80, 33, 0.12);
  --slate: #1e2a31;
  --slate-2: #273641;
  --slate-line: #354652;
  --silver: #f4f6f7;
  --white: #ffffff;
  --surface: #ffffff;
  --field-bg: #f4f6f7;
  --accent-text: var(--forest);
  --line: #e2e8ea;
  --txt: #1a252c;
  --mut: #5c6c76;
  --err: #b03a2e;

  /* Structure */
  --radius: 12px;
  --header-h: 112px;
  --font-head: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--silver);
  color: var(--txt);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--lime); color: var(--white); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

section { scroll-margin-top: calc(var(--header-h) + 8px); }

.container {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

/* ---------- Typography helpers ---------- */

.kicker {
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--lime);
  flex: none;
}

h1 { font-size: clamp(38px, 6vw, 62px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: 19px; }

.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--mut);
  max-width: 680px;
}
.lead-sm {
  color: var(--mut);
  max-width: 60ch;
}

.section { padding: 96px 0; }

/* Light section variants */
.section-white { background: var(--surface); }
.section-silver { background: var(--silver); }

/* Dark slate scope (structure sections) */
.theme-dark {
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, 0.02) 22px 44px),
    radial-gradient(1100px 480px at 85% 0%, rgba(117, 167, 44, 0.10), transparent 60%),
    var(--slate);
  color: var(--silver);
}
.theme-dark h2, .theme-dark h3 { color: var(--white); }
.theme-dark .kicker { color: var(--lime); }
.theme-dark .lead,
.theme-dark .lead-sm,
.theme-dark p { color: #c3ced6; }

.section-head { max-width: 780px; margin-bottom: 56px; }

.cta-inline .lead-sm,
section[style*="text-align:center"] .lead-sm {
  margin-left: auto;
  margin-right: auto;
}

.section-note {
  margin-top: 32px;
  color: var(--mut);
  font-size: 14px;
  border-left: 3px solid var(--lime);
  padding-left: 14px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--lime);
  color: var(--slate);
}
.btn-primary:hover {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(56, 118, 29, 0.35);
}

.btn-outline {
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

/* Outline variant on dark surfaces */
.hero .btn-outline,
.theme-dark .btn-outline {
  border-color: var(--lime);
  color: var(--lime);
}
.hero .btn-outline:hover,
.theme-dark .btn-outline:hover {
  background: var(--lime);
  color: var(--slate);
}

.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-block { width: 100%; }

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

/* ---------- Header (dark slate) ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(30, 42, 49, 0.10); }

.header-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 24px;
  padding-top: 10px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-icon { height: 44px; width: auto; flex: none; }
.brand-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1;
  color: var(--txt);
}
.brand-name span { color: var(--lime); }
.site-footer .brand-name { color: var(--white); }

.site-nav {
  order: 3;
  width: 100%;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}
.site-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 26px;
  padding: 9px 0 11px;
}
.site-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mut);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-nav a:hover { color: var(--forest); }
.site-nav a.active {
  color: var(--forest);
  border-color: var(--lime);
}

.nav-sep {
  display: flex;
  align-items: center;
  padding: 0 4px;
}
.nav-sep::after {
  content: "";
  width: 1px;
  height: 14px;
  background: var(--lime);
  opacity: 0.5;
}
.nav-external a {
  color: var(--lime) !important;
}
.nav-external a:hover {
  color: var(--forest) !important;
}

@media (max-width: 1240px) {
  .site-nav ul { gap: 6px 16px; }
  .site-nav a { font-size: 11.5px; letter-spacing: 0.3px; }
}

.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 6px;
  background: var(--silver);
}
.lang-btn {
  background: none;
  border: 0;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--mut);
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn.active {
  background: var(--lime);
  color: var(--white);
}
.lang-sep { color: var(--line); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--txt);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--mut);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.theme-toggle:hover { color: var(--forest); border-color: var(--forest); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--slate);
  padding-top: var(--header-h);
}
.hero-media {
  position: relative;
  width: 100%;
  background: var(--slate);
}
.hero-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media video {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 37, 44, 0.55) 0%, rgba(26, 37, 44, 0.35) 45%, var(--slate) 100%),
    linear-gradient(100deg, rgba(26, 37, 44, 0.95) 8%, rgba(26, 37, 44, 0.74) 48%, rgba(26, 37, 44, 0.32) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  padding: 40px 0;
  pointer-events: none;
}
.hero-content > *{pointer-events:auto}
@media(max-width:664px){
  .hero{padding-top:var(--header-h)}
  .hero-media video{height:auto}
  .hero-content{
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
    padding: 20px 20px 28px;
    background: var(--slate);
    justify-content: flex-start;
  }
  .hero-content h1{font-size:28px;line-height:1.15}
  .hero-content .lead{font-size:14px;margin-bottom:20px}
  .hero-actions{flex-direction:column;width:100%}
  .hero-actions .btn{width:100%;text-align:center}
  .cta-inline{padding:0 16px}
  .cta-inline .btn{width:100%;max-width:100%;white-space:normal;word-break:break-word;line-height:1.3;padding:14px 18px;font-size:14px;text-align:center}
}
.hero .kicker { color: var(--lime); }

.hero-content h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 22px;
}
.hero .lead { color: #ccd6dd; margin-bottom: 36px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-inline {
  text-align: center;
  margin-top: 40px;
}
.cta-inline .hero-actions {
  justify-content: center;
}

@media (max-width: 520px) {
  .cta-inline .hero-actions {
    flex-direction: column;
  }
  .cta-inline .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.hero-quick {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.hero-quick-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ccd6dd;
  border-bottom: 1px solid rgba(204, 214, 221, 0.35);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-quick-link::before {
  content: "\25B8 ";
  color: var(--lime);
}
.hero-quick-link:hover {
  color: var(--lime);
  border-color: var(--lime);
}
.hero-quick-sep {
  width: 1px;
  height: 14px;
  background: rgba(204, 214, 221, 0.3);
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--lime) 0%, var(--lime) 50%, var(--forest) 50%, var(--forest) 100%);
}

/* ---------- About (white) ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mut);
}
.chip svg { width: 15px; height: 15px; color: var(--accent-text); }

.about-media {
  position: relative;
}
.about-media img,
.card-media img,
.gallery img,
.process-media img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}
.about-media img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}
.about-media::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border: 2px solid var(--lime);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.45;
}

/* ---------- Materials (silver) ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
  box-shadow: 0 14px 34px rgba(26, 37, 44, 0.12);
}

.card-media img { aspect-ratio: 4 / 3; border-radius: 0; }

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card-body h3 { color: var(--txt); }
.card-body p {
  font-size: 13.5px;
  color: var(--mut);
  flex: 1;
}

.tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-text);
  background: var(--forest-dim);
  border-radius: 4px;
  padding: 4px 8px;
}

/* ---------- Billboard Recycling (dark slate) ---------- */

.highlight {
  border-left: 4px solid var(--lime);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 30px;
  margin-bottom: 64px;
  max-width: 860px;
}
.highlight p {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
  text-transform: none;
}

.flow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  margin-bottom: 64px;
}
.flow::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--forest));
  opacity: 0.65;
}

.flow-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  flex: 1;
}

.flow-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--slate-2);
  border: 2px solid var(--lime);
  color: var(--lime);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px var(--slate);
}
.flow-icon svg { width: 26px; height: 26px; }

.flow-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c3ced6;
  max-width: 130px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--slate-line);
  filter: saturate(0.95);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.gallery figure { overflow: hidden; border-radius: var(--radius); }
.gallery img:hover { transform: scale(1.04); border-color: var(--lime); }
.section-silver .gallery img { border-color: var(--line); }

.videos-title {
  margin: 56px 0 20px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
}

/* --- Video simple carousel --- */

.vc-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 56px;
}

.vc-window {
  overflow: hidden;
  border-radius: 14px;
}

.vc-stage {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.video-card {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: #000;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.video-card + .video-card {
  border-left: 1px solid var(--slate-line);
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-card:hover video { transform: none; }

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 20, 24, 0) 50%, rgba(13, 20, 24, 0.55) 100%);
  transition: opacity 0.25s ease;
}
.video-play::after {
  content: "";
  grid-area: 1 / 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.video-play svg {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  fill: var(--slate);
  transform: translateX(2px);
  transition: fill 0.25s ease;
}
.video-card:hover .video-play::after { transform: scale(1.1); }
.video-card.is-playing .video-play { opacity: 0; }
.vc-carousel.vc-flat .video-play{opacity:1 !important; z-index:3}
.video-card.is-playing:hover .video-play { opacity: 1; }
.video-card.is-playing:hover .video-play::after { background-color: rgba(13, 20, 24, 0.78); }
.video-card.is-playing:hover .video-play svg { fill: #ffffff; }

/* Video overlay (expanded) */
.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.video-overlay video {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.video-overlay .vc-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.video-overlay .vc-close:hover {
  border-color: var(--lime);
  transform: scale(1.1);
}

.vc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--slate-line);
  background: rgba(13, 20, 24, 0.78);
  color: var(--lime);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.vc-btn:hover {
  border-color: var(--lime);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.vc-btn svg { width: 20px; height: 20px; }
.vc-prev { left: 0; }
.vc-next { right: 0; }

.vc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.vc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.vc-dot.active {
  background: var(--lime);
  transform: scale(1.3);
}

/* --- Card Slider (segunda-vida videos) --- */
.card-slider {
  position: relative;
  max-width: 900px;
  height: 420px;
  margin: 40px auto 0;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.card-slider .slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-slider .card-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.card-slider .card-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-slider .card-item .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.card-slider .card-item .card-content .card-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-slider .card-item .card-content .card-des {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Active card (index 0 = center) */
.card-slider .card-item:nth-child(1) {
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.card-slider .card-item:nth-child(1) .card-content {
  opacity: 1;
  transform: translateY(0);
}

/* Second card peek from right */
.card-slider .card-item:nth-child(2) {
  z-index: 3;
  left: 55%;
  width: 45%;
  height: 85%;
  top: 7.5%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Third card */
.card-slider .card-item:nth-child(3) {
  z-index: 2;
  left: 62%;
  width: 38%;
  height: 70%;
  top: 15%;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Fourth card */
.card-slider .card-item:nth-child(4) {
  z-index: 1;
  left: 68%;
  width: 32%;
  height: 55%;
  top: 22.5%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Beyond 4th = hidden */
.card-slider .card-item:nth-child(n + 5) {
  opacity: 0;
  left: 75%;
  pointer-events: none;
}

/* Play button overlay */
.card-slider .card-play {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lime);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, opacity 0.3s ease;
}
.card-slider .card-play svg {
  width: 28px;
  height: 28px;
  fill: var(--slate);
  transform: translateX(2px);
}
.card-slider .card-play:hover { transform: translate(-50%, -50%) scale(1.1); }
.card-slider .card-playing .card-play { opacity: 0; pointer-events: none; }

/* Nav buttons */
.card-slider .card-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 16px;
}
.card-slider .card-nav button {
  width: 44px;
  height: 38px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.card-slider .card-nav button:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #fff;
  transform: scale(1.08);
}
.card-slider .card-nav button:active { transform: scale(1.02); }

/* Dark mode */
html.dark .card-slider {
  background: var(--card);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

/* Mobile */
@media (max-width: 600px) {
  .card-slider {
    height: 280px;
    margin: 24px 0 0;
    border-radius: 14px;
  }
  .card-slider .card-item { border-radius: 14px; }
  .card-slider .card-item:nth-child(2) { left: 50%; width: 50%; }
  .card-slider .card-item:nth-child(3) { left: 56%; width: 44%; }
  .card-slider .card-item:nth-child(4) { left: 62%; width: 38%; }
  .card-slider .card-item .card-content { padding: 20px 24px; }
  .card-slider .card-item .card-content .card-name { font-size: 20px; }
  .card-slider .card-play { left: 35%; width: 52px; height: 52px; }
  .card-slider .card-play svg { width: 22px; height: 22px; }
  .card-slider .card-nav { gap: 12px; bottom: 12px; }
  .card-slider .card-nav button { width: 38px; height: 32px; }
}

@media (max-width: 600px) {
  .vc-carousel { padding: 0 44px; }
  .vc-btn { width: 38px; height: 38px; }
  .vc-btn svg { width: 16px; height: 16px; }
}

/* ---------- Process (white) ---------- */

.process-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.process-row.flip .process-media { order: 2; }

.process-media img {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  object-fit: cover;
}


.process-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lime);
  display: block;
  margin-bottom: 10px;
}
.process-row.flip .process-num { -webkit-text-stroke-color: var(--forest); }

.process-body h3 { margin-bottom: 10px; }
.process-body p { color: var(--mut); max-width: 52ch; }

/* ---------- Why (silver) ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: 0 14px 34px rgba(26, 37, 44, 0.10);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--lime-dim);
  color: var(--accent-text);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 26px; height: 26px; }

.why-card:nth-child(even) .why-icon {
  background: var(--forest-dim);
}
.why-card:nth-child(even):hover { border-color: var(--forest); }

.why-card h3 { margin-bottom: 8px; }
.why-card p { color: var(--mut); font-size: 14.5px; }

/* ---------- Sellers (dark slate) + quote form ---------- */

.sellers-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--lime);
  border-radius: var(--radius);
  padding: 34px;
  color: var(--txt);
}
.quote-card h3 { color: var(--txt); margin-bottom: 24px; font-size: 22px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { margin-bottom: 16px; }

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mut);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--field-bg);
  border: 1px solid #d5dde1;
  border-radius: 8px;
  color: var(--txt);
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 90px; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: #93a1aa; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--forest);
  box-shadow: 0 0 0 3px var(--lime-dim);
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 14px;
  padding: 0 4px;
}
.form-status.ok {
  color: var(--accent-text);
  background: var(--forest-dim);
  border-left: 3px solid var(--forest);
  padding: 10px 12px;
  border-radius: 0 6px 6px 0;
}
.form-status.err {
  color: var(--err);
  background: rgba(176, 58, 46, 0.09);
  border-left: 3px solid var(--err);
  padding: 10px 12px;
  border-radius: 0 6px 6px 0;
}

/* ---------- Contact (silver) ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list svg {
  width: 20px;
  height: 20px;
  color: var(--accent-text);
  flex: none;
  margin-top: 3px;
}
.info-list strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--txt);
}
.info-list a:hover { color: var(--forest); }
.info-list div > a,
.info-list div > span { color: var(--mut); font-size: 15px; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--mut);
  background: var(--surface);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-row a:hover {
  color: var(--forest);
  border-color: var(--forest);
  transform: translateY(-2px);
}
.social-row svg { width: 18px; height: 18px; }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--forest);
  border-radius: var(--radius);
  padding: 34px;
}

/* ---------- Footer (dark slate) ---------- */

.site-footer {
  background: var(--slate);
  border-top: 4px solid var(--lime);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .brand { margin-bottom: 16px; }
.footer-tagline { color: var(--silver); font-weight: 500; }
.footer-location {
  color: #9fadb6;
  font-size: 14px;
  margin-top: 6px;
}

.partner-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9fadb6;
  margin: 22px 0 8px;
}
.partner-box {
  display: inline-block;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 16px;
}
.partner-logo { height: 54px; width: auto; display: block; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a,
.footer-col span {
  color: #9fadb6;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--lime); }

.footer-links-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.footer-links-split h5 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
  margin-top: 14px;
}
.footer-links-split h5:first-child {
  margin-top: 0;
}
.footer-links-split ul {
  gap: 6px;
}
.footer-links-split a {
  font-size: 13px;
}

.footer-lang { margin-top: 18px; }

.footer-bottom {
  border-top: 1px solid var(--slate-line);
  padding: 20px 0;
}
.footer-bottom p {
  color: #9fadb6;
  font-size: 13px;
  text-align: center;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.cards-grid .card:nth-child(1){transition-delay:0s}
.cards-grid .card:nth-child(2){transition-delay:.08s}
.cards-grid .card:nth-child(3){transition-delay:.16s}
.cards-grid .card:nth-child(4){transition-delay:.24s}
.cards-grid .card:nth-child(5){transition-delay:.32s}
.video-thumbs .video-thumb:nth-child(1){transition-delay:0s}
.video-thumbs .video-thumb:nth-child(2){transition-delay:.08s}
.video-thumbs .video-thumb:nth-child(3){transition-delay:.16s}
.video-thumbs .video-thumb:nth-child(4){transition-delay:.24s}
.process-row:nth-child(1){transition-delay:0s}
.process-row:nth-child(2){transition-delay:.07s}
.process-row:nth-child(3){transition-delay:.14s}
.process-row:nth-child(4){transition-delay:.21s}
.process-row:nth-child(5){transition-delay:.28s}
.card{will-change:transform, box-shadow; transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, border-color .35s ease}
.card:hover{transform:translateY(-4px); box-shadow:0 14px 34px rgba(26,37,44,.13)}
.video-card{will-change:transform}
.hero-media video{will-change:transform; animation: heroIn 1.4s ease-out both}
@keyframes heroIn{from{opacity:0;transform:scale(1.03)}to{opacity:1;transform:scale(1)}}
.video-thumbs .video-thumb{transition: transform .3s ease, box-shadow .3s ease}
.video-thumbs .video-thumb:hover{transform:translateY(-3px)}
.btn{transition: transform .2s ease, background .25s ease, box-shadow .25s ease}
.btn:hover{transform:translateY(-1px)}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,.cards-grid .card,.video-thumbs .video-thumb,.process-row{opacity:1;transform:none;transition:none;transition-delay:0s !important}
  .hero-media video{animation:none !important}
  .card:hover{transform:none !important}
  [data-i18n]{transition:none !important}
  section.theme-dark::before{animation:none !important}
  #lang-wipe{display:none !important}
}

/* Honeypot (bots only) */
.hp-field{position:absolute !important;left:-9999px !important;width:1px;height:1px;opacity:0;pointer-events:none}

/* Language switch wipe (top to bottom) */
html{scrollbar-gutter:stable}
#lang-wipe{position:fixed;inset:0;z-index:9998;pointer-events:none;transform:translateY(-102%);
  background:linear-gradient(180deg,#75A72C 0%,#2E5021 100%)}
#lang-wipe.wipe-in{transition:transform .26s ease-in;transform:translateY(0)}
#lang-wipe.wipe-out{transition:transform .26s ease-out;transform:translateY(102%)}

/* Diagonal drifting background for section.theme-dark */
section.theme-dark{position:relative;overflow:hidden}
section.theme-dark .container{position:relative;z-index:1}
section.theme-dark::before{content:"";position:absolute;inset:-45%;pointer-events:none;z-index:0;will-change:transform;
  background:
    radial-gradient(38% 30% at 22% 18%, rgba(117,167,44,.22), transparent 70%),
    radial-gradient(34% 30% at 78% 82%, rgba(117,167,44,.16), transparent 70%),
    linear-gradient(135deg, transparent 40%, rgba(117,167,44,.14) 50%, transparent 60%);
  animation:diagSlide 9s ease-in-out infinite alternate}
@keyframes diagSlide{from{transform:translate(-4%,-5%)}to{transform:translate(4%,6%)}}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .about-grid,
  .sellers-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }

  .header-cta { display: none; }

  .header-inner {
    flex-wrap: nowrap;
    height: var(--header-h);
    min-height: var(--header-h);
    padding-top: 0;
    gap: 12px;
  }

  .nav-toggle { display: flex; }

  .site-nav {
    order: 0;
    width: auto;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    margin-top: 0;
    border-top: 0;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .menu-open .site-nav { max-height: 560px; }

  .site-nav ul {
    flex-direction: column;
    justify-content: stretch;
    flex-wrap: nowrap;
    gap: 0;
    padding: 12px 20px 20px;
  }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav .nav-sep {
    padding: 0;
    justify-content: center;
  }
  .site-nav .nav-sep::after {
    width: 40px;
    height: 1px;
    background: var(--lime);
  }
  .site-nav a {
    display: block;
    padding: 13px 0;
    font-size: 13px;
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }

  /* Flow becomes vertical */
  .flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .flow::before {
    top: 8%;
    bottom: 8%;
    left: 31px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--lime), var(--forest));
  }
  .flow-step {
    flex-direction: row;
    text-align: left;
    gap: 18px;
    padding: 14px 0;
    flex: none;
  }
  .flow-icon { flex: none; box-shadow: 0 0 0 6px var(--slate); }
  .flow-label { max-width: none; }

  .process-row,
  .process-row.flip {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .process-row.flip .process-media { order: 0; }

  .form-row { grid-template-columns: 1fr; }
  .quote-card,
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card-body { padding: 14px; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-links-split { grid-template-columns: 1fr; }
  .brand-icon { height: 34px; }
  .brand-name { font-size: 17px; }
  .header-actions { gap: 8px; }
  .theme-toggle { width: 36px; height: 36px; }
  .lang-switch { padding: 2px 4px; }
  .lang-btn { padding: 3px 7px; font-size: 11px; letter-spacing: 0.5px; }
  .lang-btn { padding: 4px 8px; }
}

@media (max-width: 380px) {
  .cards-grid { grid-template-columns: 1fr; }
  .brand-name { display: none; }
}

/* ==========================================================================
   Dark mode (modo noche)
   ========================================================================== */

html.dark {
  --lime: #84b73c;
  --lime-dim: rgba(132, 183, 60, 0.16);
  --forest: #578a3a;
  --silver: #0d1418;
  --surface: #18232a;
  --field-bg: #101a20;
  --txt: #e6edf2;
  --mut: #97a6b0;
  --line: #2a353d;
  --accent-text: #a3d06a;
  --err: #ff8f7d;
  color-scheme: dark;
}

html.dark body {
  background: var(--silver);
}

html.dark .site-header {
  background: rgba(13, 20, 24, 0.96);
  border-bottom-color: var(--line);
}

html.dark .site-nav a:hover,
html.dark .site-nav a.active {
  color: var(--lime);
}

html.dark .theme-toggle:hover {
  color: var(--lime);
  border-color: var(--lime);
}

html.dark .btn-outline {
  border-color: var(--lime);
  color: var(--lime);
}
html.dark .btn-outline:hover {
  background: var(--lime);
  color: var(--slate);
}

html.dark .form-field input,
html.dark .form-field select,
html.dark .form-field textarea {
  border-color: var(--line);
}

html.dark .form-field input:focus,
html.dark .form-field select:focus,
html.dark .form-field textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-dim);
}

html.dark .process-row.flip .process-num {
  -webkit-text-stroke-color: var(--accent-text);
}

html.dark .card:hover,
html.dark .why-card:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

@media (max-width: 900px) {
  html.dark .site-nav {
    background: rgba(13, 20, 24, 0.99);
    border-bottom-color: var(--line);
  }
}

/* --- Card Slider (based on provided code) --- */

/* --- Video Thumbnails --- */
.video-thumbs{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
#video-thumbs-featured{
  display:grid !important;
  grid-template-columns: repeat(2, minmax(260px, 360px)) !important;
  justify-content:center !important;
  justify-items:center !important;
  margin:2rem auto 0 !important;
  max-width:900px !important;
}
.featured-videos .container{
  display: grid !important;
  grid-template-columns: 380px 1fr !important;
  gap: 40px !important;
  align-items: center !important;
}
.featured-videos .section-head{
  text-align:left !important;
  align-items:flex-start !important;
  justify-content:center !important;
}
.featured-videos #video-thumbs-featured{
  display:grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
  justify-content:stretch !important;
  margin:0 !important;
  max-width:none !important;
}
@media(max-width:900px){
  .featured-videos .container{grid-template-columns:1fr !important}
  .featured-videos .section-head{text-align:center !important;align-items:center !important}
  .featured-videos #video-thumbs-featured{grid-template-columns:1fr !important}
}
section:has(#video-thumbs-featured) .section-head,
.container:has(#video-thumbs-featured) .section-head{
  text-align:center !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
}
.container:has(#video-thumbs-featured) .section-head .lead-sm{margin-left:auto !important;margin-right:auto !important;max-width:640px !important;text-align:center !important}
@media(max-width:664px){
  #video-thumbs-featured{grid-template-columns:1fr !important; max-width:400px !important; margin-left:auto !important; margin-right:auto !important}
}
.video-thumb{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  aspect-ratio: 16/9;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.thumb-preview{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.thumb-play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.9);
  background: rgba(117,167,44,.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease;
  backdrop-filter: blur(4px);
}
.thumb-play svg{width:26px;height:26px;fill:#fff;transform:translateX(1px)}
.video-thumb:hover .thumb-play{transform:scale(1.08);background:var(--lime)}
.thumb-overlay{display:none}
@media(max-width:900px){.video-thumbs{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.video-thumbs{grid-template-columns:1fr}.thumb-play{width:48px;height:48px}.thumb-play svg{width:22px;height:22px}}

/* --- Full-screen Video Overlay --- */
.video-fullscreen{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}
.video-fullscreen.active{
  display: flex;
}
.video-fullscreen .close{
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: var(--lime);
  border: none;
  border-radius: 50%;
  color: var(--slate);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: background 0.3s;
}
.video-fullscreen .close:hover{
  background: var(--forest);
}
.video-fullscreen .controls{display:none}
.video-fullscreen video{
  max-width: 92vw;
  max-height: 88vh;
  background: #000;
  width: auto;
  height: auto;
  border-radius: 10px;
}
.video-fullscreen .prev,
.video-fullscreen .next{
  width: 44px;
  height: 38px;
  background: var(--lime);
  border: none;
  border-radius: 8px;
  color: var(--slate);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s;
}
.video-fullscreen .prev:hover,
.video-fullscreen .next:hover{
  background: var(--forest);
}
.video-fullscreen .prev{
  margin-right: 2rem;
}
@media (max-width: 600px) {
  .video-fullscreen .close{
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .video-fullscreen .controls{
    gap: 1rem;
    margin: 1rem 0;
  }
  .video-fullscreen .prev,
  .video-fullscreen .next{
    width: 36px;
    height: 32px;
    font-size: 14px;
  }
}

