@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
    --ink: #17211d;
    --text: #44524c;
    --soft: #f4f7f5;
    --line: #dfe8e2;
    --green: #024138;
    --green-deep: #024138;
    --gold: #fdc511;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: inherit;
    line-height: 1.6;
}

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

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

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

.wrap {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    color: var(--white);
    background: var(--green-deep);
    font-size: 0.88rem;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 0;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 235, 0.88), rgba(255, 255, 255, 0.92)),
        repeating-linear-gradient(90deg, rgba(120, 76, 36, 0.11) 0 2px, rgba(255, 255, 255, 0.05) 2px 12px),
        linear-gradient(180deg, #fffaf0, #f1dfbd);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav {
    min-height: 132px;
    display: grid;
    grid-template-columns: minmax(300px, 360px) minmax(420px, 1fr) auto;
    align-items: center;
    gap: 34px;
}

.brand {
    width: 360px;
    justify-self: start;
}

.brand img {
    width: 100%;
    max-height: 124px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-links a {
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active,
.nav-item.active > a {
    color: var(--green);
    border-color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 0 0 auto;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.dropdown-arrow {
    color: var(--gold);
    font-size: 0.72rem;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 80;
    min-width: 184px;
    display: grid;
    padding: 0;
    background: var(--white);
    box-shadow: 0 18px 34px rgba(7, 53, 31, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown-menu a {
    padding: 14px 18px;
    border-bottom: 0;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--white);
    background: var(--gold);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--green-deep);
    background: var(--white);
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
}

.btn {
    position: relative;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.32) 50%, transparent 100%);
    opacity: 0;
    transform: translateX(-120%);
    transition: opacity 0.24s ease, transform 0.48s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(7, 53, 31, 0.22);
}

.btn:hover::after {
    opacity: 1;
    transform: translateX(120%);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn.primary {
    color: var(--white);
    background: var(--gold);
}

.btn.primary:hover {
    background: #e8b400;
}

.btn.quote-nav {
    gap: 8px;
    background: var(--green);
}

.btn.quote-nav:hover,
.btn.distribution-cta:hover {
    background: #01372f;
}

.quote-nav-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.btn.light {
    color: var(--white);
    background: var(--gold);
    border-color: var(--gold);
}

.btn.light:hover {
    border-color: #e8b400;
    background: #e8b400;
}

.btn.facebook-nav {
    gap: 8px;
    color: var(--white);
    background: #1877f2;
}

.btn.facebook-nav:hover {
    background: #0f5fca;
}

.facebook-nav-icon {
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #1877f2;
    background: var(--white);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--gold);
    border: 1px solid rgba(253, 197, 17, 0.45);
    box-shadow: 0 14px 34px rgba(7, 53, 31, 0.24);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 60;
    width: 230px;
    height: 154px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    animation: whatsappBounce 2.4s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: visible;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    animation-play-state: paused;
}

.floating-whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floating-whatsapp::before {
    content: "Comunícate con Nosotros";
    position: absolute;
    right: 212px;
    top: 50%;
    min-width: 190px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--green-deep);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(7, 53, 31, 0.18);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translate(10px, -50%);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-whatsapp::after {
    content: "";
    position: absolute;
    right: 203px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translate(10px, -50%);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-whatsapp:hover::before,
.floating-whatsapp:hover::after {
    opacity: 1;
    transform: translate(0, -50%);
}

@keyframes whatsappBounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: #f4b900;
    box-shadow: 0 18px 38px rgba(7, 53, 31, 0.3);
}

.hero {
    position: relative;
    min-height: 760px;
    height: 760px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 32, 20, 0.92), rgba(4, 32, 20, 0.58), rgba(4, 32, 20, 0.12)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.08));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 70px 0 130px;
}

@keyframes bannerTextIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy {
    display: none;
}

.hero-copy.active {
    display: block;
}

.hero-copy.active .eyebrow,
.hero-copy.active h1,
.hero-copy.active .hero-text {
    animation: bannerTextIn 0.9s ease both;
}

.hero-copy.active h1 {
    animation-delay: 0.14s;
}

.hero-copy.active .hero-text {
    animation-delay: 0.28s;
}

.hero-actions,
.slider-controls {
    animation: bannerTextIn 0.9s ease both;
}

.hero-actions {
    animation-delay: 0.42s;
}

.slider-controls {
    animation-delay: 0.56s;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 820px;
    margin: 0;
    color: inherit;
    font-size: 4.8rem;
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    color: var(--ink);
    font-size: 3rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-text {
    max-width: 650px;
    margin: 22px 0 0;
    color: #eef4ef;
    font-size: 1.18rem;
}

.hero-actions,
.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 780px;
    margin-top: 56px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.hero-meta span {
    min-height: 86px;
    display: grid;
    place-items: center;
    padding: 14px;
    text-align: center;
    color: #f7faf8;
    font-weight: 800;
}

.slider-controls {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.slider-controls button {
    width: 38px;
    height: 5px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
    padding: 0;
}

.slider-controls button.active {
    width: 58px;
    background: var(--gold);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    cursor: pointer;
    font-size: 2.3rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(253, 197, 17, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.hero-arrow-prev {
    left: 28px;
}

.hero-arrow-next {
    right: 28px;
}

.page-hero {
    padding: 110px 0;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(4, 32, 20, 0.92), rgba(4, 32, 20, 0.58)),
        url("../images/BANNER2.webp") center/cover;
}

.page-hero.products-hero {
    background:
        linear-gradient(90deg, rgba(4, 32, 20, 0.92), rgba(4, 32, 20, 0.52)),
        url("../images/BANNER1.webp") center/cover;
}

.page-hero.contact-hero {
    background:
        linear-gradient(90deg, rgba(4, 32, 20, 0.92), rgba(4, 32, 20, 0.52)),
        url("../images/BANNER3.webp") center/cover;
}

.page-hero p {
    max-width: 680px;
    margin: 20px 0 0;
    color: #eef4ef;
    font-size: 1.12rem;
}

.section {
    padding: 84px 0;
}

.section.soft {
    background: var(--soft);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 38px;
}

.section-head p {
    margin: 0;
    font-size: 1.05rem;
}

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

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

.reveal.visible .section-head,
.reveal.visible .product,
.reveal.visible .catalog-card,
.reveal.visible .feature,
.reveal.visible .process article {
    animation: sectionItemIn 0.8s ease both;
}

.reveal.visible .product:nth-child(2),
.reveal.visible .catalog-card:nth-child(2),
.reveal.visible .feature:nth-child(2),
.reveal.visible .process article:nth-child(2) {
    animation-delay: 0.12s;
}

.reveal.visible .product:nth-child(3),
.reveal.visible .catalog-card:nth-child(3),
.reveal.visible .feature:nth-child(3),
.reveal.visible .process article:nth-child(3) {
    animation-delay: 0.24s;
}

.reveal.visible .catalog-card:nth-child(4),
.reveal.visible .feature:nth-child(4),
.reveal.visible .process article:nth-child(4) {
    animation-delay: 0.36s;
}

@keyframes sectionItemIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.product {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 8px;
    color: var(--white);
    background: var(--green-deep);
    position: relative;
}

.product img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 0.35s ease;
}

.product::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 53, 31, 0.1), rgba(7, 53, 31, 0.9));
}

.product:hover img {
    transform: scale(1.04);
}

.product div {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.product h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 1.45rem;
    line-height: 1.15;
}

.product p {
    margin: 0;
    color: #e7f0ea;
}

.catalog-card,
.feature,
.process article,
.contact-card,
.form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.catalog-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    color: var(--white);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.catalog-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.catalog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 53, 31, 0.1), rgba(7, 53, 31, 0.88));
    transition: opacity 0.35s ease, background 0.35s ease;
}

.catalog-card div {
    position: relative;
    z-index: 1;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
}

.catalog-card h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.45rem;
    line-height: 1.12;
}

.catalog-card:hover {
    border-color: rgba(253, 197, 17, 0.65);
    box-shadow: 0 22px 42px rgba(7, 53, 31, 0.2);
    transform: translateY(-8px);
}

.catalog-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.08);
}

.distribution-section {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 247, 0.92)),
        repeating-linear-gradient(90deg, rgba(2, 65, 56, 0.04) 0 1px, transparent 1px 14px);
    color: var(--text);
    overflow: hidden;
}

.distribution-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 52px;
    align-items: center;
}

.distribution-copy h2 {
    color: var(--ink);
}

.distribution-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--text);
    font-size: 1.06rem;
}

.distribution-points {
    display: grid;
    gap: 10px;
    margin: 28px 0;
}

.distribution-points span {
    display: inline-flex;
    width: fit-content;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--green);
    background: var(--white);
    font-weight: 800;
}

.btn.distribution-cta {
    background: var(--green);
    color: var(--white);
}

.distribution-gallery {
    position: relative;
    min-height: 520px;
}

.distribution-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.distribution-card.large {
    left: 0;
    top: 0;
    bottom: auto;
    width: 72%;
}

.distribution-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.distribution-card.large img {
    height: 430px;
}

.distribution-card:hover img {
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.08);
}


.split {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 58px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: 0.85fr 1fr;
}

.split-media {
    overflow: hidden;
    border-radius: 8px;
}

.split-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.feature {
    padding: 20px;
}

.feature strong {
    display: block;
    color: var(--green-deep);
    font-size: 1.05rem;
    line-height: 1.25;
}

.feature span {
    display: block;
    margin-top: 6px;
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: step;
}

.process article {
    padding: 26px;
    counter-increment: step;
}

.process article::before {
    content: "0" counter(step);
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--gold);
    font-weight: 900;
}

.process h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 1.2rem;
}

.process p {
    margin: 0;
}

.cta {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 53, 31, 0.95), rgba(15, 81, 50, 0.78)),
        url("../images/BANNER3.webp") center/cover;
}

.cta .wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.cta h2 {
    color: var(--white);
}

.cta p {
    max-width: 650px;
    margin: 16px 0 0;
    color: #eef4ef;
}

.contact {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-list div,
.contact-card {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-card {
    padding: 22px;
    border-bottom: 1px solid var(--line);
}

.contact-list strong,
.contact-card strong {
    display: block;
    color: var(--green-deep);
}

.form {
    padding: 28px;
}

.form-status {
    display: none;
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid rgba(2, 65, 56, 0.18);
    border-radius: 8px;
    color: var(--green);
    background: #edf7f4;
    font-weight: 800;
}

.form-status.visible {
    display: block;
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: 0.82rem;
    font-weight: 700;
}

.form label {
    display: block;
    margin-bottom: 18px;
    color: var(--ink);
    font-weight: 800;
}

.form input,
.form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fbfcfb;
}

.form textarea {
    min-height: 134px;
    resize: vertical;
}

.form input:focus,
.form textarea:focus {
    outline: 3px solid rgba(253, 197, 17, 0.22);
    border-color: var(--gold);
}

.footer {
    color: #dfe9e4;
    background: #10241b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 36px;
    padding: 54px 0;
}

.footer-logo {
    width: 310px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.footer h3 {
    margin: 0 0 12px;
    color: var(--white);
}

.footer p {
    margin: 14px 0 0;
    color: #b9c8c0;
}

.footer-bottom {
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #b9c8c0;
    text-align: center;
}

@media (max-width: 960px) {
    .topbar .wrap,
    .nav,
    .section-head,
    .split,
    .split.reverse,
    .cta .wrap,
    .contact,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: grid;
        padding: 16px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .hero {
        min-height: 700px;
        height: 700px;
    }

    h1 {
        font-size: 3.4rem;
    }

    h2 {
        font-size: 2.35rem;
    }

    .products,
    .catalog-grid,
    .process,
    .hero-meta {
        grid-template-columns: 1fr 1fr;
    }

    .split-media img {
        height: 360px;
    }

    .distribution-layout {
        grid-template-columns: 1fr;
    }

    .distribution-gallery {
        min-height: 620px;
    }
}

@media (max-width: 620px) {
    .wrap {
        width: min(100% - 28px, 1160px);
    }

    .topbar {
        display: none;
    }

    .topbar .wrap {
        gap: 4px;
    }

    .brand {
        width: 300px;
        justify-self: center;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        position: absolute;
        left: 14px;
        top: 28px;
    }

    .nav-links {
        display: none;
        width: 100%;
        align-items: center;
        justify-content: center;
        font-size: 0.84rem;
        padding-top: 12px;
    }

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

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-item > a {
        justify-content: center;
    }

    .dropdown-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        min-height: 560px;
        height: 560px;
    }

    .hero-content {
        padding: 38px 0 74px;
    }

    h1 {
        font-size: 2.18rem;
        line-height: 1.08;
    }

    .hero-text {
        margin-top: 16px;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 22px;
    }

    .slider-controls {
        margin-top: 16px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.75rem;
    }

    .hero-arrow-prev {
        left: 12px;
    }

    .hero-arrow-next {
        right: 12px;
    }

    .hero-arrow {
        display: none;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 62px 0;
    }

    .products,
    .catalog-grid,
    .process,
    .features,
    .hero-meta {
        grid-template-columns: 1fr;
    }

    .distribution-gallery {
        display: grid;
        gap: 18px;
        min-height: 0;
    }

    .distribution-card,
    .distribution-card.large {
        position: static;
        width: 100%;
    }

    .distribution-card img,
    .distribution-card.large img {
        height: 260px;
    }

    .hero-actions,
    .page-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
        font-size: 1.35rem;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 72px;
        width: 188px;
        height: 126px;
    }

    .floating-whatsapp img {
        width: 100%;
        height: 100%;
    }

    .floating-whatsapp::before {
        right: 166px;
        min-width: 146px;
        padding: 9px 11px;
        font-size: 0.78rem;
    }

    .floating-whatsapp::after {
        right: 157px;
    }

    .form {
        padding: 20px;
    }
}
