:root {
  --orange: #ec7008;
  --orange-dark: #bb5200;
  --green: #8ca723;
  --green-soft: #f1f5e5;
  --ink: #222720;
  --muted: #687066;
  --cream: #fff8ee;
  --surface: #ffffff;
  --line: #e8e9e3;
  --page: 1180px;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(42, 48, 37, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.topbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 8px max(24px, calc((100% - var(--page))/2));
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
}

.top-brand { display: flex; align-items: center; flex: 0 0 auto; }
.top-brand img { width: 245px; height: 64px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: stretch; gap: 26px; }
.nav > a, .products-menu > summary { min-height: 56px; display: flex; align-items: center; padding: 0 2px; position: relative; cursor: pointer; list-style: none; font-size: .94rem; font-weight: 650; }
.nav > a::after, .products-menu > summary::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 3px; border-radius: 99px; background: var(--orange); transition: right .18s ease; }
.nav > a:hover::after, .nav > a.active::after, .products-menu > summary:hover::after, .products-menu > summary.active::after { right: 0; }
.products-menu { position: relative; }
.products-menu summary::-webkit-details-marker { display: none; }
.products-menu summary::before { content: ""; order: 2; width: 7px; height: 7px; border-right: 2px solid; border-bottom: 2px solid; transform: rotate(45deg); margin: -5px 0 0 10px; }
.dropdown { position: absolute; right: -44px; top: 61px; min-width: 270px; display: grid; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.dropdown a { padding: 11px 12px; border-radius: 9px; font-size: .86rem; font-weight: 580; }
.dropdown a:hover { background: var(--cream); color: var(--orange-dark); }
.search-toggle { border: 0; background: transparent; font-size: 1.7rem; cursor: pointer; }
.menu-toggle { display: none; padding: 8px 12px; border: 1px solid #aaa; border-radius: 9px; background: transparent; }

.search-panel { padding: 17px max(24px, calc((100% - var(--page))/2)); background: var(--cream); border-bottom: 1px solid var(--line); }
.search-panel label { display: block; margin-bottom: 7px; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.search-panel input { width: min(100%, 560px); padding: 12px 14px; border: 1px solid #c8cbc3; border-radius: 10px; background: #fff; }
.search-results { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 11px; font-size: .86rem; }
.search-results a { color: var(--orange-dark); text-decoration: underline; }

.home-hero { min-height: 610px; padding: 70px max(24px, calc((100% - var(--page))/2)); display: grid; grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr); align-items: center; gap: clamp(45px, 7vw, 90px); background: radial-gradient(circle at 80% 10%, rgba(140,167,35,.12), transparent 34%), linear-gradient(135deg, #fffaf3 0%, #fff 70%); border-bottom: 1px solid #f0ede6; }
.hero-copy { max-width: 590px; }
.eyebrow { margin: 0 0 15px; color: var(--orange-dark); font-size: .76rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.hero-copy h1 { max-width: 650px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.25rem, 6vw, 5.55rem); font-weight: 500; line-height: .98; letter-spacing: -.047em; }
.hero-text { max-width: 560px; margin: 25px 0 29px; color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.18rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.primary-action, .secondary-action { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border-radius: 999px; font-size: .9rem; font-weight: 780; transition: transform .18s ease, box-shadow .18s ease; }
.primary-action { color: #fff; background: var(--orange); box-shadow: 0 12px 25px rgba(236,112,8,.22); }
.secondary-action { border: 1px solid #cfd2ca; background: #fff; }
.primary-action:hover, .secondary-action:hover { transform: translateY(-2px); }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.hero-points span { padding: 8px 11px; border-radius: 999px; color: #536239; background: var(--green-soft); font-size: .76rem; font-weight: 700; }
.hero-media { position: relative; min-width: 0; }
.carousel { position: relative; margin: 0; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: 0 25px 70px rgba(59,65,49,.14); overflow: hidden; }
.slides { position: relative; aspect-ratio: 1.28; overflow: hidden; background: #fff; }
.slide { position: absolute; inset: 0; width: 100%; height: 100%; padding: 18px; object-fit: contain; opacity: 0; transition: opacity .5s ease; }
.slide.shown { opacity: 1; }
.slide-prev, .slide-next { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 48px; border: 0; color: #fff; background: rgba(34,39,32,.62); font-size: 1.75rem; cursor: pointer; }
.slide-prev { left: 0; border-radius: 0 10px 10px 0; }
.slide-next { right: 0; border-radius: 10px 0 0 10px; }
.hero-badge { position: absolute; left: -28px; bottom: -27px; min-width: 220px; display: grid; gap: 3px; padding: 16px 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.hero-badge strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; }
.hero-badge span { color: var(--muted); font-size: .76rem; }

.content-section, .page-wrap, .company-copy { width: min(var(--page), calc(100% - 40px)); margin: 0 auto; }
.content-section { padding: 105px 0 100px; }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .company-copy h2, .page-wrap > h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.35rem, 5vw, 4rem); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
.section-heading > p:last-child { max-width: 640px; margin: 18px auto 0; color: var(--muted); line-height: 1.7; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.category-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 32px rgba(38,44,34,.055); transition: transform .2s ease, box-shadow .2s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(38,44,34,.11); }
.category-image { aspect-ratio: 1.38; overflow: hidden; background: #f7f8f4; }
.category-image img { width: 100%; height: 100%; padding: 14px; object-fit: contain; transition: transform .25s ease; }
.category-card:hover img { transform: scale(1.03); }
.category-card h3 { min-height: 64px; display: flex; align-items: center; justify-content: space-between; margin: 0; padding: 17px 19px; border-top: 1px solid var(--line); font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; font-weight: 500; }
.category-card h3::after { content: "→"; color: var(--orange); font-family: Arial, sans-serif; font-size: 1rem; }
.category-placeholder { display: grid; place-content: center; background: radial-gradient(circle at 68% 24%, rgba(140,167,35,.14), transparent 28%), linear-gradient(145deg, #fbfaf6, #f0f4e7); border: 0; }
.category-symbol { position: relative; width: 92px; height: 92px; border: 2px solid rgba(140,167,35,.4); border-radius: 50%; background: rgba(255,255,255,.72); box-shadow: 0 12px 30px rgba(66,78,47,.08); }
.category-symbol::before, .category-symbol::after { content: ""; position: absolute; left: 50%; top: 50%; border-radius: 99px; background: #718836; transform: translate(-50%, -50%); }
.category-symbol::before { width: 42px; height: 10px; }
.category-symbol::after { width: 10px; height: 42px; }

.company-copy { margin-bottom: 105px; padding: 70px clamp(24px, 7vw, 88px); border-radius: 28px; color: #fff; background: linear-gradient(125deg, #252b22, #3c4930); text-align: left; }
.company-copy .eyebrow { color: #d6e99c; }
.company-copy h2 { max-width: 700px; }
.company-copy > p:not(.eyebrow) { max-width: 900px; margin: 22px 0 28px; color: rgba(255,255,255,.78); font-size: 1.08rem; line-height: 1.8; }
.company-copy > a { display: inline-flex; gap: 8px; color: #fff; font-weight: 750; }
.company-copy > a span { color: #d6e99c; }

.page-wrap { padding: 72px 0 95px; min-height: 70vh; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 42px; color: var(--muted); font-size: .78rem; }
.breadcrumbs a:hover { color: var(--orange); }
.page-wrap > h1 { text-align: center; margin-bottom: 48px; }
.page-copy { max-width: 920px; margin: -22px auto 50px; text-align: center; color: #454b43; font-size: 1rem; line-height: 1.8; }
.page-wrap > .category-grid { margin-top: 40px; }
.image-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; margin: 55px auto 0; }
.image-gallery.single { grid-template-columns: minmax(0, 850px); justify-content: center; }
.image-gallery img { width: 100%; height: 100%; min-height: 280px; max-height: 680px; padding: 12px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.image-gallery img.brand-logo-image { width: min(100%, 340px); height: auto; min-height: 0; max-height: 100px; margin: auto; padding: 8px 12px; border: 0; border-radius: 0; background: transparent; }
.embed-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; margin-top: 60px; }
.embed-item { padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: #f8f9f6; }
.embed-item iframe { width: 100%; min-height: 560px; border: 0; border-radius: 10px; background: #fff; }
.catalog-link { display: inline-block; margin: 12px 6px 4px; color: var(--orange-dark); text-decoration: underline; font-size: .86rem; }
.empty { text-align: center; font-size: 1.08rem; color: var(--muted); }
.contact-page { text-align: center; }
.contact-page p { font-size: 1.08rem; color: var(--muted); }
.contact-line { display: block; width: max-content; max-width: 100%; margin: 17px auto; color: var(--orange-dark); font-size: 1.2rem; font-weight: 750; }

footer { padding: 52px max(24px, calc((100% - var(--page))/2)) 22px; background: var(--cream); border-top: 1px solid #f0dfc7; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: start; }
.footer-brand img { width: 235px; height: auto; }
.footer-brand p { max-width: 510px; margin: 16px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.footer-contact { display: grid; gap: 8px; min-width: 235px; }
.footer-contact strong { margin-bottom: 4px; }
.footer-contact a { color: var(--orange-dark); font-size: .92rem; }
.footer-note { margin: 38px 0 0; padding-top: 18px; border-top: 1px solid #eadcc8; color: #7a746b; font-size: .76rem; }

.whatsapp-button { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 18px 0 13px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; color: #fff; background: #25d366; box-shadow: 0 14px 34px rgba(18,83,40,.3); font-size: .9rem; font-weight: 800; transition: transform .18s ease, box-shadow .18s ease; }
.whatsapp-button:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(18,83,40,.38); }
.whatsapp-icon { position: relative; width: 29px; height: 29px; border: 2px solid #fff; border-radius: 50%; }
.whatsapp-icon::before { content: ""; position: absolute; left: 7px; top: 6px; width: 10px; height: 6px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; border-radius: 0 0 0 9px; transform: rotate(-38deg); }
.whatsapp-icon::after { content: ""; position: absolute; left: 1px; bottom: -3px; width: 8px; height: 8px; border-left: 2px solid #fff; transform: rotate(-24deg); }

@media (max-width: 960px) {
  .topbar { min-height: 74px; padding: 6px 18px; }
  .top-brand img { width: 205px; height: 58px; }
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; top: 74px; left: 0; right: 0; padding: 12px 18px 18px; background: #fff; box-shadow: 0 14px 28px rgba(0,0,0,.12); flex-direction: column; gap: 0; }
  .nav.open { display: flex; }
  .nav > a, .products-menu > summary { min-height: 44px; }
  .dropdown { position: static; box-shadow: none; border: 0; border-radius: 10px; background: var(--cream); }
  .home-hero { min-height: 0; grid-template-columns: 1fr; gap: 48px; padding-top: 58px; padding-bottom: 80px; }
  .hero-copy { max-width: 760px; }
  .hero-media { width: min(720px, 100%); }
  .hero-badge { left: 20px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .top-brand img { width: 178px; height: 52px; }
  .home-hero { padding: 44px 20px 65px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 13vw, 4.1rem); }
  .hero-actions a { flex: 1 1 150px; }
  .slides { aspect-ratio: 1.05; }
  .slide { padding: 8px; }
  .hero-badge { left: 12px; right: 12px; bottom: -34px; min-width: 0; }
  .content-section { padding-top: 95px; }
  .category-grid, .image-gallery { grid-template-columns: 1fr; }
  .company-copy { width: calc(100% - 28px); margin-bottom: 70px; padding: 48px 24px; border-radius: 22px; }
  .embed-list { grid-template-columns: 1fr; }
  .embed-item iframe { min-height: 450px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .whatsapp-button { right: 14px; bottom: 14px; min-width: 52px; padding: 0 11px; }
  .whatsapp-button > span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
