:root {
    --green: #9cca1b;
    --green-soft: #eef7d5;
    --mauve: #b36ea3;
    --lilac: #f6f1f5;
    --plum: #713f69;
    --forest: #0d342c;
    --cream: #f4f0e8;
    --paper: #fffdf9;
    --ink: #202521;
    --muted: #686d69;
    --line: #deded8;
    --radius: 30px;
    --container: 1460px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; background: var(--paper); }
body { min-width: 320px; margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: Inter, "Helvetica Neue", Arial, sans-serif; }
button { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--plum); outline-offset: 4px; }
[hidden] { display: none !important; }
::selection { color: white; background: var(--plum); }
.shell { width: min(100%, var(--container)); margin-inline: auto; padding-inline: 34px; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; transform: translateY(-100px); padding: 12px 18px; background: white; box-shadow: 0 10px 30px #0002; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: relative; z-index: 100; padding: 18px 0; border-bottom: 1px solid var(--line); background: rgba(255,253,249,.94); backdrop-filter: blur(16px); }
.header-row { min-height: 62px; display: flex; align-items: center; gap: 28px; }
.brand { width: 238px; flex: 0 0 238px; padding: 5px 0; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 8px; margin-left: auto; padding: 7px; border: 1px solid var(--line); border-radius: 999px; background: white; }
.desktop-nav a { padding: 11px 16px; border-radius: 999px; color: #4b504c; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: .2s ease; }
.desktop-nav a:hover { color: var(--forest); background: var(--green-soft); }
.language { display: flex; gap: 4px; align-items: center; color: #777; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.language .active { color: var(--plum); }
.header-cta { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 23px; border-radius: 999px; color: var(--forest); background: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; transition: .2s ease; }
.header-cta:hover { color: white; background: var(--forest); }
.menu-toggle { width: 48px; height: 48px; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; margin-left: auto; border: 1px solid var(--line); border-radius: 50%; background: white; }
.menu-toggle span { width: 19px; height: 1px; background: var(--forest); transition: .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: absolute; top: 100%; right: 0; left: 0; padding: 12px 0 24px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 24px 50px #0d342c18; }
.mobile-menu nav { display: grid; }
.mobile-menu a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.mobile-menu .mobile-language { color: var(--plum); }

.hero { padding: 38px 0 76px; background: linear-gradient(180deg, var(--paper), #f8f7f1); }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: .82fr 1.18fr; align-items: stretch; gap: 28px; }
.hero-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 66px 48px; border: 1px solid var(--line); border-radius: 40px; background: white; }
.kicker { display: inline-flex; align-items: center; gap: 12px; margin: 0; color: var(--plum); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.kicker::before { width: 36px; height: 3px; content: ''; background: var(--green); }
.hero h1 { max-width: 670px; margin: 28px 0 0; color: var(--forest); font-size: clamp(58px, 6.2vw, 94px); font-weight: 800; line-height: .91; letter-spacing: -.065em; }
.hero-lead { max-width: 620px; margin: 34px 0 0; color: var(--muted); font-size: 17px; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 38px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 27px; border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; transition: .2s ease; }
.button-primary { color: var(--forest); background: var(--green); }
.button-primary:hover { color: white; background: var(--forest); }
.button-ghost { border: 1px solid var(--line); background: var(--paper); }
.button-ghost:hover { border-color: var(--mauve); color: var(--plum); }
.hero-visual { position: relative; min-width: 0; overflow: hidden; border-radius: 40px; background: var(--cream); }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 63% center; }
.hero-note { position: absolute; right: 24px; bottom: 24px; max-width: 315px; padding: 25px; border-radius: 24px; color: white; background: rgba(13,52,44,.9); backdrop-filter: blur(12px); }
.hero-note strong { display: block; font-size: 34px; letter-spacing: -.04em; }
.hero-note span { display: block; margin-top: 5px; color: #e2e9e6; font-size: 12px; line-height: 1.5; }

.service-ribbon { border-block: 1px solid var(--line); background: white; }
.service-ribbon .shell { min-height: 90px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.service-ribbon span { display: flex; align-items: center; gap: 12px; padding: 20px 24px; border-right: 1px solid var(--line); color: var(--forest); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.service-ribbon span:last-child { border-right: 0; }
.service-ribbon span::before { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; content: ''; background: var(--mauve); }

.section { padding: 124px 0; }
.section-head { display: grid; grid-template-columns: .7fr 1.3fr; align-items: end; gap: 40px; margin-bottom: 58px; }
.section-head h2, .about-copy h2, .process-copy h2, .cta h2 { margin: 0; color: var(--forest); font-size: clamp(44px, 5vw, 72px); font-weight: 750; line-height: .98; letter-spacing: -.055em; }
.section-head > p { max-width: 700px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.categories { background: white; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-card { position: relative; min-height: 410px; overflow: hidden; border-radius: var(--radius); background: var(--forest); }
.category-card-link, .product-card-link { position: absolute; z-index: 4; inset: 0; border-radius: inherit; }
.category-card:nth-child(1), .category-card:nth-child(6) { grid-column: span 2; }
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card:hover img { transform: scale(1.035); }
.category-card::after { position: absolute; inset: 0; content: ''; background: linear-gradient(0deg, rgba(13,52,44,.92), transparent 68%); }
.category-copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 25px; color: white; }
.category-copy small { color: var(--green); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.category-copy h3 { margin: 8px 0 0; font-size: 25px; line-height: 1.1; }
.category-copy p { margin: 9px 0 0; color: #e0e6e3; font-size: 13px; line-height: 1.5; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 78px; }
.about-media { position: relative; min-height: 650px; overflow: hidden; border-radius: 44px; background: white; }
.about-media img { width: 100%; height: 100%; min-height: 650px; object-fit: contain; object-position: center; }
.about-badge { position: absolute; right: 22px; bottom: 22px; padding: 22px 25px; border-radius: 20px; color: var(--forest); background: var(--green); }
.about-badge strong { display: block; font-size: 42px; line-height: 1; }
.about-badge span { display: block; margin-top: 5px; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.about-copy > p:not(.kicker) { margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.9; }
.about-copy h2 { margin-top: 24px; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 34px; }
.about-stats div { padding: 20px; border: 1px solid #d8d6ce; border-radius: 18px; background: rgba(255,255,255,.55); }
.about-stats strong { display: block; color: var(--plum); font-size: 25px; }
.about-stats span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; font-weight: 700; }

.products { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { position: relative; padding: 12px 12px 23px; border: 1px solid var(--line); border-radius: 26px; background: white; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px #0d342c12; }
.product-card img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; border-radius: 18px; }
.product-card small { display: block; margin: 20px 8px 0; color: var(--plum); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.product-card h3 { margin: 8px; color: var(--forest); font-size: 20px; line-height: 1.25; }
.product-card p { margin: 0 8px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.breadcrumbs { margin-bottom: 42px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0; padding: 0; color: var(--muted); font-size: 12px; font-weight: 700; list-style: none; }
.breadcrumbs a { color: var(--plum); }
.breadcrumbs a:hover { color: var(--forest); }
.catalog-hero { padding: 70px 0 78px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, var(--paper), var(--lilac)); }
.catalog-hero .kicker { margin-top: 10px; }
.catalog-hero h1, .product-detail-copy h1 { max-width: 1050px; margin: 24px 0 0; color: var(--forest); font-size: clamp(50px, 6vw, 86px); font-weight: 800; line-height: .96; letter-spacing: -.06em; }
.catalog-lead, .product-lead { max-width: 780px; margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.85; }
.catalog-hero-compact { padding-block: 36px; background: var(--paper); }
.catalog-hero-compact .breadcrumbs { margin: 0; }
.category-detail { padding: 36px 0 0; background: white; }
.category-detail-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: center; gap: 54px; }
.category-detail-media { min-height: 520px; overflow: hidden; border-radius: 36px; background: var(--cream); }
.category-detail-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.rich-copy { color: var(--muted); font-size: 16px; line-height: 1.9; }
.rich-copy > :first-child { margin-top: 0; }
.rich-copy > :last-child { margin-bottom: 0; }
.rich-copy h2, .rich-copy h3 { color: var(--forest); line-height: 1.2; }
.rich-copy a { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }
.empty-state { padding: 44px; border: 1px solid var(--line); border-radius: 26px; background: white; }
.empty-state h2 { margin: 0; color: var(--forest); }
.empty-state p { margin: 12px 0 0; color: var(--muted); }
.catalog-pagination { margin-top: 50px; }
.catalog-pagination nav > div { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.catalog-pagination a, .catalog-pagination span { display: inline-flex; align-items: center; gap: 5px; }
.catalog-pagination svg { width: 18px; height: 18px; }

.product-detail { padding: 70px 0 112px; background: white; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr); align-items: start; gap: 76px; }
.product-gallery { min-width: 0; }
.product-gallery-stage { min-height: 680px; display: grid; place-items: center; overflow: hidden; border-radius: 38px; background: var(--cream); }
.product-gallery-stage > img { width: 100%; max-height: 820px; object-fit: contain; }
.product-gallery-thumbnails { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
.product-gallery-thumbnail { overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 15px; background: var(--cream); cursor: pointer; }
.product-gallery-thumbnail[aria-pressed="true"] { border-color: var(--plum); }
.product-gallery-thumbnail img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-detail-copy { position: sticky; top: 32px; padding-top: 18px; }
.product-detail-copy .kicker { color: var(--plum); }
.product-detail-copy h1 { margin-top: 22px; font-size: clamp(48px, 5vw, 76px); }
.product-code { margin: 22px 0 0; color: var(--plum); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.product-detail-copy .rich-copy { margin-top: 28px; }
.product-detail-copy > .button { margin-top: 34px; }
.product-specs { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.product-specs h2 { margin: 0 0 18px; color: var(--forest); font-size: 28px; }
.back-link { display: inline-flex; margin-top: 34px; color: var(--plum); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.related-products { background: var(--cream); }

.process { background: white; }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 70px; }
.process-copy h2 { margin-top: 24px; }
.process-copy > p:not(.kicker) { margin: 28px 0 0; color: var(--muted); line-height: 1.9; }
.process-list { display: grid; gap: 12px; margin-top: 32px; }
.process-list div { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 13px; padding: 15px; border-radius: 17px; background: var(--lilac); }
.process-list span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--forest); background: var(--green); font-size: 11px; font-weight: 900; }
.process-list strong { color: var(--forest); font-size: 14px; }
.process-media { min-height: 630px; overflow: hidden; border-radius: 44px; }
.process-media img { width: 100%; height: 100%; min-height: 630px; object-fit: cover; }

.cta { padding: 90px 0; color: white; background: var(--plum); }
.cta-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.cta .kicker { color: white; }
.cta h2 { max-width: 920px; margin-top: 20px; color: white; }
.cta .button { color: var(--forest); background: var(--green); }
.cta .button:hover { background: white; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.cta .button-whatsapp { gap: 10px; border: 1px solid rgba(255,255,255,.7); color: white; background: transparent; }
.cta .button-whatsapp:hover { color: var(--forest); background: white; }
.whatsapp-icon { width: 20px; height: 20px; flex: 0 0 auto; }

.footer { padding: 70px 0 30px; color: #dbe2df; background: var(--forest); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 55px; }
.footer-logo { width: 270px; display: block; padding: 8px; border-radius: 12px; background: white; }
.footer p { max-width: 390px; color: #aebbb6; font-size: 13px; line-height: 1.8; }
.footer h2 { margin: 5px 0 20px; color: white; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li + li { margin-top: 12px; }
.footer li { color: #bdc7c3; font-size: 13px; }
.footer a:hover { color: white; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.footer-socials a { color: #bdc7c3; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 25px; border-top: 1px solid #ffffff1c; color: #81908a; font-size: 11px; }

@media (max-width: 1100px) {
    .desktop-nav, .header-cta { display: none; }
    .menu-toggle { display: flex; }
    .language { margin-left: auto; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { min-height: 570px; }
    .hero-visual { min-height: 650px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .category-card:nth-child(1), .category-card:nth-child(6) { grid-column: auto; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .category-detail-grid, .product-detail-grid { grid-template-columns: 1fr; }
    .product-detail-copy { position: static; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .shell { padding-inline: 20px; }
    .site-header { padding: 11px 0; }
    .header-row { min-height: 58px; gap: 15px; }
    .brand { width: 174px; flex-basis: 174px; }
    .language { display: none; }
    .hero { padding-top: 20px; }
    .hero-grid { min-height: 0; gap: 16px; }
    .hero-copy { min-height: 540px; padding: 42px 24px; border-radius: 27px; }
    .hero h1 { font-size: clamp(53px, 15vw, 68px); }
    .hero-lead { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-visual { min-height: 520px; border-radius: 27px; }
    .hero-visual > img { object-position: 68% center; }
    .hero-note { right: 15px; bottom: 15px; left: 15px; max-width: none; }
    .service-ribbon .shell { grid-template-columns: 1fr 1fr; padding-block: 10px; }
    .service-ribbon span { min-height: 68px; padding: 12px 8px; border: 0; font-size: 10px; }
    .section { padding: 84px 0; }
    .section-head { grid-template-columns: 1fr; gap: 25px; margin-bottom: 38px; }
    .section-head h2, .about-copy h2, .process-copy h2, .cta h2 { font-size: 45px; }
    .category-grid, .product-grid { grid-template-columns: 1fr; }
    .category-card { min-height: 450px; }
    .catalog-hero { padding: 48px 0 56px; }
    .catalog-hero h1, .product-detail-copy h1 { font-size: 48px; }
    .category-detail-grid { gap: 30px; }
    .category-detail-media, .category-detail-media img { min-height: 340px; }
    .product-detail { padding: 34px 0 78px; }
    .product-detail-grid { gap: 38px; }
    .product-gallery-stage { min-height: 420px; border-radius: 26px; }
    .product-gallery-thumbnails { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .about-grid, .process-grid { grid-template-columns: 1fr; gap: 45px; }
    .about-media, .about-media img, .process-media, .process-media img { min-height: 480px; }
    .process-media { order: -1; }
    .cta-row { grid-template-columns: 1fr; }
    .cta-row .button { width: 100%; }
    .cta-actions { justify-content: stretch; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; }
}

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