:root {
  color-scheme: light;
  --cream: #f5f5f1;
  --paper: #ffffff;
  --ink: #151515;
  --muted: #646464;
  --line: rgba(21, 21, 21, 0.1);
  --coral: #ff7448;
  --coral-dark: #eb6238;
  --green: #2f7d68;
  --shadow: 0 24px 80px rgba(21, 21, 21, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: var(--coral);
  color: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 245, 241, 0.84);
  backdrop-filter: blur(22px);
}

.nav-shell,
.shell,
.hero-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
}

.brand,
.nav-links,
.button-row,
.footer-shell {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}

.brand-logo {
  display: block;
  width: 180px;
  height: 90px;
  flex: 0 0 180px;
  object-fit: contain;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 0.2s, opacity 0.2s;
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(4px);
}

.menu-open .menu-icon {
  background: transparent;
}

.menu-open .menu-icon::before {
  transform: translateY(2px) rotate(45deg);
}

.menu-open .menu-icon::after {
  transform: translateY(0) rotate(-45deg);
}

.mobile-only {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.button:hover {
  transform: translateY(-1px);
}

.button.coral {
  background: var(--coral);
  color: #fff;
}

.button.coral:hover {
  background: var(--coral-dark);
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.button.outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.hero {
  min-height: 100vh;
  padding: 112px 20px 48px;
}

.hero-shell {
  display: grid;
  min-height: calc(100vh - 160px);
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(44px, 7vw, 84px);
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: min(58vh, 680px);
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
  mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
}

.badge {
  position: absolute;
  top: 52px;
  left: -18px;
  z-index: 1;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.section {
  padding: 96px 20px;
}

.products-section {
  background: #fff;
}

.section-heading {
  max-width: 860px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.value-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.value-card {
  padding: 30px;
}

.value-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 8px;
  background: #fff2ed;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.value-card p,
.split-heading p,
.product-card p,
.metric-card p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: end;
  gap: 36px;
  margin-bottom: 54px;
}

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

.product-card {
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #ece8df;
}

.product-body {
  padding: 26px;
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.tag,
.feature {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.tag {
  background: #fff;
  color: var(--coral);
  padding: 6px 11px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 24px;
}

.feature {
  gap: 6px;
  background: #fff;
  color: var(--ink);
  padding: 7px 11px;
}

.feature::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  margin-top: 48px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-main {
  height: 540px;
}

.gallery-side {
  display: grid;
  gap: 18px;
}

.gallery-side img,
.metric-card {
  min-height: 260px;
}

.metric-card {
  display: grid;
  align-content: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 32px;
}

.metric-card strong {
  font-size: 56px;
}

.metric-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 84px 20px;
}

.footer-shell {
  justify-content: space-between;
  gap: 36px;
}

.footer h2 {
  max-width: 760px;
}

.footer p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(21, 21, 21, 0.48);
  padding: 24px;
  backdrop-filter: blur(8px);
}

.modal.hidden,
.hidden {
  display: none !important;
}

.modal-panel {
  width: min(100%, 680px);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 8px;
  background: var(--cream);
  padding: 30px;
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.modal-head h2 {
  font-size: clamp(28px, 5vw, 38px);
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 116, 72, 0.16);
}

.notice {
  margin: 0;
  border-radius: 8px;
  background: #eff8f4;
  color: #1f604e;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .mobile-only {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .button {
    justify-content: flex-start;
    width: 100%;
    padding: 14px;
  }

  .hero-shell,
  .values-grid,
  .split-heading,
  .products-grid,
  .gallery-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    align-items: flex-start;
  }

  .hero {
    padding-top: 102px;
  }

  .hero-shell {
    gap: 38px;
  }

  .hero-media img {
    height: 52vh;
    min-height: 340px;
  }

  .badge {
    left: 14px;
  }
}

@media (max-width: 620px) {
  .section,
  .footer {
    padding-block: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 16px;
  }

  .button-row,
  .button-row .button,
  .footer-shell .button,
  .product-card .button {
    width: 100%;
  }

  .gallery-main,
  .gallery-side img,
  .metric-card {
    height: auto;
    min-height: 240px;
  }

  .modal {
    padding: 14px;
  }

  .modal-panel {
    padding: 22px;
  }
}

/* BOTTONE WHATSAPP */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            min-height: 100vh;
            background: #f0f2f5;
        }

        .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .whatsapp-button {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-button:active {
            transform: scale(0.95);
        }

        .whatsapp-icon {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            padding: 10px 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            font-size: 14px;
            color: #333;
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid white;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

        .whatsapp-widget:hover .whatsapp-tooltip {
            opacity: 1;
        }

        /* Pulse animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-button {
            animation: pulse 2s infinite;
        }

        .whatsapp-button:hover {
            animation: none;
        }
