:root {
    --green-950: #003f26;
    --green-900: #06472d;
    --green-700: #176b3a;
    --green-100: #ecf7e7;
    --orange: #ff8617;
    --orange-dark: #8b4b12;
    --cream: #fff9ef;
    --ink: #123126;
    --muted: #52645c;
    --line: rgba(0, 63, 38, 0.14);
    --shadow: 0 18px 50px rgba(0, 44, 27, 0.12);
}

/* Painel administrativo */
.admin-body {
    min-height: 100vh;
    margin: 0;
    color: #20352b;
    background: #f3f6f2;
}

.admin-header {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 12px max(24px, calc((100vw - 1280px) / 2));
    border-bottom: 1px solid #dce7df;
    background: #fff;
}

.admin-brand {
    margin-right: auto;
    color: var(--green-950);
    font-size: 20px;
    font-weight: 900;
}

.admin-brand span {
    color: var(--orange);
}

.admin-header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.admin-header nav a,
.admin-link-button {
    border: 0;
    color: #405149;
    background: transparent;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.admin-main {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 64px;
}

.admin-login-main {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.admin-login-card {
    width: min(430px, 100%);
    padding: 34px;
    border: 1px solid #dce7df;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 44, 27, 0.12);
}

.admin-login-card > img {
    width: 130px;
    height: 74px;
    display: block;
    margin: 0 auto 18px;
    object-fit: contain;
}

.admin-login-card h1,
.admin-page-heading h1 {
    margin: 4px 0 8px;
    color: var(--green-950);
}

.admin-login-card > p,
.admin-page-heading p {
    margin: 0;
    color: var(--muted);
}

.admin-login-card > a {
    display: block;
    margin-top: 18px;
    text-align: center;
    color: var(--green-700);
    font-weight: 700;
}

.admin-alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 750;
}

.admin-alert-success {
    color: #105d36;
    background: #dcf3e5;
}

.admin-alert-error {
    color: #8a250e;
    background: #ffe0d2;
}

.admin-page-heading {
    margin-bottom: 28px;
}

.admin-page-heading > span,
.admin-page-heading div > span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-heading-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admin-stat-grid,
.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.admin-stat-grid article,
.admin-action-grid a,
.admin-form,
.admin-table-wrap {
    border: 1px solid #dce7df;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 44, 27, 0.06);
}

.admin-stat-grid article {
    padding: 24px;
}

.admin-stat-grid span,
.admin-action-grid span {
    display: block;
    color: var(--muted);
}

.admin-stat-grid strong {
    display: block;
    margin-top: 8px;
    color: var(--green-950);
    font-size: 38px;
}

.admin-action-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}

.admin-action-grid a {
    padding: 24px;
}

.admin-action-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--green-950);
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #edf1ee;
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: #53645b;
    background: #f8faf8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-product-cell img {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    object-fit: contain;
    background: #fff;
}

.admin-product-cell strong,
.admin-product-cell small {
    display: block;
}

.admin-product-cell small {
    margin-top: 3px;
    color: var(--muted);
}

.admin-status {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.admin-status.is-active {
    color: #0d6a3b;
    background: #dcf3e5;
}

.admin-status.is-inactive {
    color: #7d4a0b;
    background: #fff0ce;
}

.admin-row-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-row-actions a,
.admin-row-actions button {
    border: 0;
    color: var(--green-700);
    background: transparent;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

.admin-row-actions button {
    color: #a53a24;
}

.admin-form {
    display: grid;
    gap: 22px;
    padding: 26px;
}

.admin-form fieldset {
    min-width: 0;
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 20px;
    border: 1px solid #dce7df;
    border-radius: 10px;
}

.admin-form legend {
    padding: 0 8px;
    color: var(--green-950);
    font-weight: 850;
}

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

.admin-form label {
    display: grid;
    gap: 7px;
    color: #34483f;
    font-weight: 750;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfdcd3;
    border-radius: 8px;
    color: #20352b;
    background: #fff;
    font: inherit;
}

.admin-form textarea {
    resize: vertical;
}

.admin-form label small {
    color: var(--muted);
    font-weight: 500;
}

.admin-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.admin-checks label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-checks input {
    width: auto;
}

.admin-form > .btn {
    justify-self: start;
}

.admin-image-preview {
    width: 220px;
    height: 220px;
    display: block;
    object-fit: contain;
    border: 1px solid #dce7df;
    border-radius: 8px;
    background: #fff;
}

@media (max-width: 780px) {
    .admin-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .admin-header nav {
        width: 100%;
        order: 3;
    }

    .admin-stat-grid,
    .admin-action-grid,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-heading-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-login-card,
    .admin-form {
        padding: 20px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: #fffdf8;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #ffb454;
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 12px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--green-950);
    color: #fff;
    font-weight: 800;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.breadcrumbs {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 0;
    font-size: 0.86rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #68766f;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: #a3ada8;
}

.breadcrumbs a {
    color: #176640;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

img,
svg {
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.image-hero {
    overflow: hidden;
    background: #fff;
}

.image-hero img {
    width: 100%;
    height: auto;
}

.site-header {
    background: #fff;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-weight: 700;
}

.header-strip span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-strip svg,
.navbar svg,
.btn svg {
    width: 20px;
    height: 20px;
}

.header-strip svg {
    color: #93c83f;
}

.navbar {
    min-height: 118px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 185px;
    height: 92px;
    overflow: hidden;
}

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

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
    font-size: 15px;
    font-weight: 800;
}

.nav-links a {
    position: relative;
    padding: 12px 0;
    color: #333;
    opacity: 0.92;
}

.nav-links a:hover {
    color: #f6a23f;
}

.nav-links a.active {
    color: var(--orange);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    border-radius: 999px;
    background: var(--orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart-link {
    position: relative;
    display: grid;
    place-items: center;
    color: #333;
}

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green-950);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.company-link svg {
    width: 19px;
    height: 19px;
}

.cart-link svg {
    width: 34px;
    height: 34px;
}

.cart-link span {
    position: absolute;
    top: -9px;
    right: -11px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(51, 51, 51, 0.18);
    background: transparent;
    color: #333;
    width: 44px;
    height: 44px;
    border-radius: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 22px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 134, 23, 0.22);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.68);
    color: var(--green-950);
    border-color: var(--green-900);
}

.hero {
    overflow: hidden;
    min-height: 500px;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: 20px;
    padding: 50px max(24px, calc((100vw - 1200px) / 2)) 34px;
    background:
        radial-gradient(circle at 75% 18%, rgba(255, 134, 23, 0.18), transparent 22%),
        linear-gradient(90deg, #fff8ef 0%, #fffaf2 42%, #f8ead7 100%);
}

.hero-content {
    padding-left: 10px;
    z-index: 2;
}

.hero h1 {
    margin: 0;
    max-width: 520px;
    color: var(--green-950);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.04;
    font-weight: 900;
}

.hero h1::first-line {
    color: #005432;
}

.hero p {
    max-width: 500px;
    margin: 22px 0 28px;
    color: #4a5751;
    font-size: clamp(18px, 2.2vw, 23px);
    line-height: 1.55;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-visual {
    position: relative;
    min-height: 430px;
}

.pouch {
    position: absolute;
    bottom: 28px;
    width: 184px;
    height: 338px;
    padding: 72px 24px 22px;
    border-radius: 8px 8px 38px 38px;
    box-shadow: 0 24px 45px rgba(46, 22, 6, 0.22);
    color: #fff;
    text-align: center;
    transform: rotate(-7deg);
}

.pouch::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255,255,255,0.32), transparent 32%, rgba(0,0,0,0.14));
}

.pouch span,
.pouch strong,
.pouch em {
    position: relative;
    display: block;
}

.pouch span {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 900;
}

.pouch strong {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.pouch em {
    margin-top: 24px;
    font-size: 27px;
    font-style: normal;
    font-weight: 800;
}

.pouch-grape {
    left: 160px;
    background:
        radial-gradient(circle at 40% 28%, rgba(255,255,255,0.4) 0 2px, transparent 3px),
        linear-gradient(160deg, #8f0f4a, #4d082d);
}

.pouch-mango {
    left: 330px;
    width: 205px;
    height: 365px;
    bottom: 18px;
    color: #52320f;
    background: linear-gradient(160deg, #ffd338, #f99010);
    transform: rotate(3deg);
}

.pouch-mango strong {
    color: #5a3111;
}

.fruit,
.ice {
    position: absolute;
    border-radius: 50%;
}

.fruit-orange {
    left: 30px;
    bottom: 115px;
    width: 158px;
    height: 158px;
    background: radial-gradient(circle, #ffcf68 0 16%, #fb8e16 17% 62%, #fff5cc 63% 66%, #f28a18 67%);
    box-shadow: 0 16px 30px rgba(244, 130, 24, 0.25);
}

.fruit-mango {
    right: 0;
    bottom: 18px;
    width: 170px;
    height: 130px;
    border-radius: 34px 80px 42px 80px;
    background: linear-gradient(135deg, #f8c035, #f28613);
    box-shadow: inset 18px 0 rgba(255,255,255,0.2);
}

.ice {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.55);
    border: 2px solid rgba(118, 171, 185, 0.35);
    box-shadow: inset 8px 8px 16px rgba(255, 255, 255, 0.9), 0 8px 18px rgba(35, 89, 93, 0.1);
    transform: rotate(18deg);
}

.ice-one { left: 108px; bottom: 24px; }
.ice-two { left: 278px; bottom: 0; transform: rotate(-14deg); }
.ice-three { right: 158px; bottom: 78px; transform: rotate(28deg); }

.products-preview,
.content-section,
.catalog-grid,
.contact-section,
.benefits-grid-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 58px 24px 24px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: end;
    gap: 40px;
    margin-bottom: 26px;
}

.section-heading span,
.eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
}

.section-heading h2,
.content-section h2 {
    margin: 0;
    max-width: 520px;
    color: var(--green-950);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.05;
}

.section-heading p,
.content-section p,
.catalog-card p,
.contact-card p {
    color: var(--muted);
    line-height: 1.6;
    font-weight: 600;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    min-height: 470px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.product-card-warm {
    background: linear-gradient(135deg, #fff1cf, #ffe7ae);
}

.product-card-fresh {
    background: linear-gradient(135deg, #e8f7fb, #d3edf8);
}

.product-card-gold {
    background: linear-gradient(135deg, #ffe9a4, #ffc453);
}

.product-copy {
    position: relative;
    z-index: 2;
    padding: 32px 0 32px 22px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.badge svg {
    width: 13px;
    height: 13px;
}

.product-card h3 {
    margin: 28px 0 14px;
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.05;
    color: #683100;
}

.product-card p {
    margin: 0;
    max-width: 290px;
    color: #4d4335;
    line-height: 1.55;
    font-weight: 700;
}

.product-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
    color: #28513d;
    font-size: 14px;
    font-weight: 800;
}

.product-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.product-card li svg {
    width: 16px;
    height: 16px;
    color: var(--green-700);
}

.product-image {
    min-height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: ellipse(82% 68% at 72% 55%);
}

.benefits-row {
    max-width: 1120px;
    margin: 0 auto 28px;
    padding: 24px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    background: #f6fbf0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 63, 38, 0.07);
}

.benefits-row article,
.benefits-grid-page article {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefits-row svg,
.benefits-grid-page svg,
.about-panel svg {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    padding: 8px;
    border-radius: 50%;
    color: var(--green-700);
    background: #e4f7d4;
}

.benefits-row h3,
.benefits-grid-page h2 {
    margin: 0 0 5px;
    font-size: 16px;
    color: var(--green-950);
}

.benefits-row p,
.benefits-grid-page p {
    margin: 0;
    color: #44584e;
    line-height: 1.35;
    font-size: 14px;
    font-weight: 600;
}

.cta-band {
    max-width: 1120px;
    min-height: 142px;
    margin: 0 auto 22px;
    padding: 25px 42px 25px 280px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    border-radius: 8px;
    background: linear-gradient(90deg, #004528, #00623d);
    color: #fff;
}

.cta-fruits {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 260px;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1610832958506-aa56368176cf?auto=format&fit=crop&w=500&q=80');
    background-size: cover;
    background-position: center;
}

.cta-band h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 37px);
    line-height: 1.1;
}

.cta-band h2 span {
    display: block;
    color: #ffa329;
}

.site-footer {
    background: #fff;
    color: #333;
    padding: 34px 24px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 34px;
}

.footer-brand {
    width: 135px;
    height: 74px;
    margin-bottom: 16px;
}

.site-footer h3 {
    margin: 0 0 14px;
    font-size: 15px;
}

.site-footer h3 .footer-title-link {
    margin: 0;
    color: #333;
    font-size: inherit;
}

.site-footer p,
.site-footer a {
    display: block;
    margin: 0 0 10px;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

.site-footer address {
    font-style: normal;
}

.site-footer p svg {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.site-footer p a,
.contact-card p a {
    display: inline;
}

.contact-card address {
    font-style: normal;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
}

.copyright {
    max-width: 1120px;
    margin: 16px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 18px;
    text-align: center;
}

.copyright strong {
    color: var(--green-700);
}

.page-hero {
    padding: 70px 24px;
    text-align: center;
    background: linear-gradient(135deg, #fff5e4, #edf8e7);
}

.small-hero h1 {
    margin: 0 auto 14px;
    max-width: 760px;
    color: var(--green-950);
    font-size: clamp(40px, 6vw, 62px);
    line-height: 1.05;
}

.small-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 700;
}

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

.catalog-card,
.contact-form,
.contact-card,
.about-panel,
.benefits-grid-page article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(0, 44, 27, 0.08);
}

.catalog-card {
    overflow: hidden;
}

.catalog-card > div:last-child {
    padding: 24px;
}

.catalog-image {
    height: 230px;
    background-size: cover;
    background-position: center;
}

.catalog-card span {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.catalog-card h2 {
    margin: 8px 0;
    color: var(--green-950);
}

.products-hero {
    min-height: 260px;
    display: grid;
    grid-template-columns: minmax(330px, 0.85fr) minmax(420px, 1.15fr);
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, #fffaf3 0%, #fffaf3 46%, rgba(255, 250, 243, 0.2) 70%),
        linear-gradient(135deg, #fff6e6, #f2eadb);
}

.products-hero-copy {
    padding: 42px 24px 42px max(24px, calc((100vw - 1120px) / 2));
}

.products-hero h1 {
    margin: 0 0 14px;
    color: var(--green-950);
    font-size: clamp(44px, 5.5vw, 64px);
    line-height: 1;
    font-weight: 900;
}

.products-hero p {
    max-width: 540px;
    margin: 0;
    color: #495a53;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 700;
}

.products-hero-art {
    position: relative;
    min-height: 260px;
}

.products-hero-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1610832958506-aa56368176cf?auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.82;
}

.products-hero-art .fruit-orange {
    left: 6%;
    bottom: 36px;
    width: 122px;
    height: 122px;
}

.products-hero-art .product-hero-pouch {
    transform: scale(0.62) rotate(-7deg);
    transform-origin: bottom left;
    bottom: 18px;
    z-index: 2;
}

.products-hero-art .pouch-grape {
    left: 185px;
}

.products-hero-art .pouch-mango {
    left: 305px;
    transform: scale(0.62) rotate(3deg);
}

.products-hero-art .ice {
    z-index: 2;
}

.catalog-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 30px 24px 10px;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 28px;
}

.catalog-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.catalog-tab {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 0;
    border-radius: 6px;
    color: var(--green-950);
    background: transparent;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.catalog-tab:hover,
.catalog-tab:focus-visible {
    background: #e7f6d8;
}

.catalog-tab.active {
    background: var(--green-950);
    color: #fff;
}

.product-category[hidden] {
    display: none;
}

.sort-control {
    min-width: 270px;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border: 1px solid rgba(0, 63, 38, 0.15);
    border-radius: 6px;
    background: #fff;
    color: #617066;
    font-size: 14px;
}

.sort-control select {
    min-width: 0;
    flex: 1;
    border: 0;
    background: transparent;
    color: #405149;
    font: inherit;
    outline: 0;
}

.product-category {
    margin-bottom: 30px;
}

.category-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.category-heading > svg {
    width: 64px;
    height: 64px;
    padding: 14px;
    border-radius: 50%;
    color: var(--green-700);
    background: #e7f6d8;
}

.category-heading.ice-heading > svg {
    color: #0f5c85;
    background: #e8f4fb;
}

.category-heading h2 {
    margin: 0 0 6px;
    color: var(--green-950);
    font-size: clamp(28px, 3.5vw, 36px);
    line-height: 1.1;
}

.category-heading p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.45;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ice-list {
    grid-template-columns: repeat(4, 1fr);
}

.store-card {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(0, 63, 38, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 44, 27, 0.05);
}

.store-image {
    min-height: 190px;
    position: relative;
    display: grid;
    place-items: end center;
    overflow: hidden;
    border-radius: 6px;
    background: linear-gradient(180deg, #fff, #fff8ed);
}

.product-photo {
    place-items: center;
    background: #fff;
}

.product-photo img {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: contain;
}

.fruit-pack::before,
.fruit-pack::after,
.ice-pack::before,
.ice-pack::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.fruit-pack::before {
    left: 8px;
    bottom: 10px;
    width: 54px;
    height: 54px;
    background: var(--accent);
    box-shadow: 70px 0 0 -8px color-mix(in srgb, var(--accent), #fff 24%);
    opacity: 0.9;
}

.fruit-pack::after {
    right: 8px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    background: radial-gradient(circle at 38% 35%, #fff 0 10%, var(--accent) 11%);
    opacity: 0.86;
}

.mini-pouch {
    position: relative;
    z-index: 1;
    width: 92px;
    height: 150px;
    margin-bottom: 18px;
    padding: 32px 10px 10px;
    border-radius: 6px 6px 18px 18px;
    background: linear-gradient(150deg, color-mix(in srgb, var(--accent), #fff 14%), var(--accent));
    color: #fff;
    text-align: center;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.mini-pouch::before,
.ice-bag::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255,255,255,0.35), transparent 34%, rgba(0,0,0,0.12));
}

.mini-pouch span,
.mini-pouch strong,
.mini-pouch em,
.mini-pouch small,
.ice-bag span,
.ice-bag strong,
.ice-bag em,
.ice-bag small {
    position: relative;
    display: block;
}

.mini-pouch span,
.ice-bag span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
}

.mini-pouch strong,
.ice-bag strong {
    font-size: 22px;
    line-height: 1;
    font-style: italic;
}

.mini-pouch em {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.1;
    font-style: normal;
    font-weight: 900;
}

.mini-pouch small,
.ice-bag small {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 800;
}

.fruit-pack-manga .mini-pouch,
.fruit-pack-maracuja .mini-pouch {
    color: #5a3414;
}

.ice-pack {
    background: linear-gradient(180deg, #fbfdff, #eef8ff);
}

.ice-pack::before {
    inset: auto 10px 6px auto;
    width: 96px;
    height: 42px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.8), rgba(163, 218, 241, 0.5)),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(84, 166, 207, 0.18) 18px 28px);
    transform: rotate(-3deg);
}

.ice-pack::after {
    left: 10px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(211, 238, 250, 0.75);
    border: 1px solid rgba(80, 156, 195, 0.25);
    box-shadow: 28px 8px 0 -4px rgba(211, 238, 250, 0.8);
    transform: rotate(18deg);
}

.ice-bag {
    position: relative;
    z-index: 1;
    width: 114px;
    height: 128px;
    margin-bottom: 28px;
    padding: 28px 12px 10px;
    border-radius: 8px 8px 22px 22px;
    background: linear-gradient(160deg, #fff, #d9f0fb);
    color: #0f5c85;
    text-align: center;
    box-shadow: 0 12px 24px rgba(15, 92, 133, 0.12);
}

.ice-bag em {
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 0.9;
    font-style: normal;
    font-weight: 900;
}

.store-card h3 {
    margin: 14px 0 4px;
    color: var(--green-950);
    font-size: 16px;
    line-height: 1.2;
}

.store-card p,
.store-card small {
    display: block;
    margin: 0 0 6px;
    color: #5d6c64;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

.store-card > strong {
    display: block;
    margin: 10px 0 12px;
    color: var(--green-950);
    font-size: 18px;
}

.details-btn {
    width: 100%;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #eca956;
    border-radius: 5px;
    color: #cc7a1d;
    background: #fffdf8;
    font-size: 12px;
    font-weight: 900;
}

.card-actions {
    display: grid;
    gap: 8px;
}

.card-actions form {
    margin: 0;
}

.buy-btn {
    cursor: pointer;
    background: #fff7ed;
}

.details-btn svg {
    width: 14px;
    height: 14px;
}

.load-more {
    width: min(260px, 100%);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    border: 1px solid var(--green-950);
    border-radius: 6px;
    color: var(--green-950);
    background: #fff;
    font-weight: 800;
}

.catalog-benefits {
    margin-top: 22px;
}

.product-detail,
.cart-page,
.checkout-page,
.success-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 58px 24px;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-visual {
    min-height: 430px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.detail-visual .mini-pouch {
    width: 150px;
    height: 245px;
    padding-top: 52px;
}

.detail-visual .ice-bag {
    width: 190px;
    height: 215px;
    padding-top: 48px;
}

.product-detail-image {
    min-height: 500px;
    background: #fff;
}

.product-image-button {
    width: 100%;
    min-height: 500px;
    position: relative;
    display: grid;
    place-items: center;
    padding: 16px;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-image-button > img {
    width: 100%;
    height: 460px;
    display: block;
    object-fit: contain;
}

.zoom-hint {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 63, 38, 0.88);
    font-size: 13px;
    font-weight: 800;
}

.zoom-hint svg,
.zoom-actions svg {
    width: 18px;
    height: 18px;
}

.product-zoom-modal {
    width: min(1100px, calc(100vw - 32px));
    height: min(850px, calc(100vh - 32px));
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.product-zoom-modal::backdrop {
    background: rgba(0, 24, 15, 0.8);
}

.zoom-toolbar {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--green-950);
}

.zoom-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zoom-actions button {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--green-950);
    background: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.zoom-actions button:hover,
.zoom-actions button:focus-visible {
    border-color: var(--green-700);
    background: #f1f8ed;
}

.zoom-canvas {
    height: calc(100% - 64px);
    overflow: auto;
    background: #f7f8f5;
}

.zoom-canvas img {
    width: 100%;
    max-width: none;
    min-height: 100%;
    display: block;
    object-fit: contain;
    transition: width 160ms ease;
}

.detail-copy h1 {
    margin: 10px 0 16px;
    color: var(--green-950);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
}

.detail-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600;
}

.back-link {
    color: var(--green-700);
    font-weight: 800;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: grid;
    gap: 10px;
    color: #34483f;
    font-weight: 700;
}

.detail-list li {
    display: flex;
    gap: 8px;
    align-items: center;
}

.detail-list svg {
    width: 18px;
    height: 18px;
    color: var(--green-700);
}

.detail-price {
    display: block;
    margin: 18px 0;
    color: var(--green-950);
    font-size: 34px;
}

.purchase-form {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: end;
}

.purchase-form label,
.cart-item label,
.checkout-form label {
    display: grid;
    gap: 7px;
    color: var(--green-950);
    font-weight: 800;
}

.purchase-form input,
.cart-item input,
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
    background: #fffdf8;
}

.purchase-form input {
    width: 110px;
}

.related-products {
    max-width: 1120px;
    margin: 0 auto 34px;
    padding: 0 24px;
}

.related-products h2 {
    color: var(--green-950);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.related-card,
.empty-state,
.cart-item,
.cart-summary,
.checkout-form,
.checkout-summary,
.success-card,
.policy-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 44, 27, 0.08);
}

.related-card {
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.related-card-image {
    height: 180px;
    display: grid;
    place-items: center;
    margin: -4px -4px 14px;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.related-card span,
.related-card em {
    display: block;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.related-card strong {
    display: block;
    margin: 8px 0;
    color: var(--green-950);
}

.related-card em {
    margin-top: auto;
}

.cart-page,
.checkout-page,
.success-page {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.cart-page > .flash {
    grid-column: 1 / -1;
}

.cart-table {
    display: grid;
    gap: 14px;
    transition: opacity 0.2s ease;
}

.cart-table.is-updating {
    opacity: 0.65;
}

.cart-item {
    display: grid;
    grid-template-columns: 84px minmax(180px, 1fr) 130px 120px auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
}

.cart-item-image {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: #f1f7f3;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info > strong {
    color: var(--green-950);
}

.cart-item span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-weight: 600;
}

.text-btn {
    border: 0;
    background: transparent;
    color: #b14422;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.cart-summary,
.checkout-summary,
.success-card,
.empty-state {
    padding: 24px;
}

.cart-summary h2,
.checkout-summary h2,
.success-card h2 {
    margin-top: 0;
    color: var(--green-950);
}

.cart-summary div,
.checkout-summary div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 12px 0;
}

.cart-summary .btn,
.checkout-summary .btn {
    width: 100%;
    margin-top: 16px;
}

.cart-summary .cart-summary-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #dce8e1;
    font-size: 1.1rem;
    color: var(--green-950);
}

.free-delivery-note {
    margin: 14px 0 0;
    padding: 11px 13px;
    border-radius: 10px;
    background: #eaf7ef;
    color: #176640;
    font-size: 0.86rem;
    font-weight: 700;
}

.cart-toast {
    position: fixed;
    z-index: 1500;
    right: 24px;
    bottom: 24px;
    max-width: min(360px, calc(100% - 48px));
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--green-950);
    color: #fff;
    box-shadow: 0 14px 36px rgb(0 0 0 / 22%);
    font-weight: 700;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cart-toast.is-error {
    background: #9d3428;
}

.company-page {
    width: min(920px, calc(100% - 40px));
    margin: 36px auto 72px;
}

.company-page-narrow {
    width: min(540px, calc(100% - 40px));
}

.company-card {
    padding: clamp(24px, 4vw, 42px);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgb(19 66 43 / 10%);
}

.company-form,
.company-form [data-company-fields] {
    display: grid;
    gap: 22px;
}

.company-form [hidden] {
    display: none;
}

.company-form label {
    display: grid;
    gap: 8px;
    color: var(--green-950);
    font-size: 0.9rem;
    font-weight: 800;
}

.company-form input {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #cadbd1;
    border-radius: 10px;
    background: #fff;
    color: #183a2a;
    font: inherit;
}

.company-form input[readonly] {
    background: #eef4f0;
    color: #617269;
}

.company-fieldset {
    margin: 0;
    padding: 22px;
    border: 1px solid #dce8e1;
    border-radius: 16px;
}

.company-fieldset legend {
    padding: 0 8px;
    color: var(--green-950);
    font-weight: 900;
}

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

.cnpj-lookup-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
}

.cnpj-status {
    margin: -10px 0 0;
    color: #65766d;
    font-weight: 700;
}

.cnpj-status.is-success {
    color: #167044;
}

.cnpj-status.is-error {
    color: #a03d2c;
}

.company-switch {
    margin: 24px 0 0;
    text-align: center;
}

.company-switch a {
    color: var(--green-700);
    font-weight: 800;
}

.company-logout-form {
    margin-top: 24px;
    text-align: center;
}

.checkout-form {
    padding: 24px;
}

.checkout-form fieldset {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.checkout-form legend {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    color: var(--green-950);
    font-size: 22px;
    font-weight: 900;
}

.checkout-form label:has(textarea),
.checkout-form label:has(select) {
    grid-column: 1 / -1;
}

.checkout-summary hr {
    border: 0;
    border-top: 1px solid var(--line);
}

.checkout-summary .total {
    font-size: 20px;
    color: var(--green-950);
}

.success-card {
    text-align: center;
}

.success-card svg {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    color: var(--green-700);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.policy-grid article {
    padding: 24px;
}

.policy-grid h2 {
    margin-top: 0;
    color: var(--green-950);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 34px;
}

.about-panel {
    padding: 30px;
}

.about-panel strong {
    display: block;
    margin: 18px 0 8px;
    color: var(--green-950);
    font-size: 22px;
}

.benefits-grid-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefits-grid-page article {
    display: block;
    padding: 24px;
}

.benefits-grid-page svg {
    margin-bottom: 16px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
}

.contact-form,
.contact-card {
    padding: 28px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--green-950);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
    font: inherit;
    color: var(--ink);
    background: #fffdf8;
}

.contact-form textarea {
    resize: vertical;
}

.flash {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.flash-success {
    color: #105d36;
    background: #e3f6db;
}

.flash-error {
    color: #8a250e;
    background: #ffe0d2;
}

@media (max-width: 980px) {
    .header-strip {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .navbar {
        grid-template-columns: 1fr auto;
        min-height: auto;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .nav-links,
    .nav-actions {
        display: none;
        grid-column: 1 / -1;
    }

    .navbar.is-open .nav-links,
    .navbar.is-open .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .hero,
    .products-hero,
    .section-heading,
    .product-cards,
    .split-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 36px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .pouch-grape {
        left: 34%;
    }

    .pouch-mango {
        left: 54%;
    }

    .benefits-row,
    .benefits-grid-page,
    .catalog-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-hero-copy {
        padding: 38px 24px 18px;
    }

    .products-hero-art {
        min-height: 250px;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .sort-control {
        width: 100%;
    }

    .product-list,
    .ice-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail,
    .cart-page,
    .checkout-page,
    .success-page {
        grid-template-columns: 1fr;
    }

    .related-grid,
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cart-item {
        grid-template-columns: 1fr 120px;
    }

    .cta-band {
        grid-template-columns: 1fr;
        padding-left: 220px;
    }
}

@media (max-width: 640px) {
    .header-strip {
        align-items: start;
        font-size: 13px;
    }

    .header-strip span {
        justify-content: flex-start;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 22px;
    }

    .products-hero h1 {
        font-size: 42px;
    }

    .products-hero-art {
        min-height: 230px;
    }

    .products-hero-art .product-hero-pouch {
        transform: scale(0.5) rotate(-7deg);
    }

    .products-hero-art .pouch-grape {
        left: 122px;
    }

    .products-hero-art .pouch-mango {
        left: 224px;
        transform: scale(0.5) rotate(3deg);
    }

    .products-hero-art .fruit-orange {
        left: 12px;
        bottom: 58px;
        width: 90px;
        height: 90px;
    }

    .catalog-page {
        padding-top: 22px;
    }

    .catalog-tabs {
        width: 100%;
    }

    .catalog-tab {
        width: 100%;
        justify-content: center;
    }

    .category-heading {
        align-items: flex-start;
    }

    .category-heading > svg {
        width: 54px;
        height: 54px;
        padding: 12px;
    }

    .hero-visual {
        width: 100%;
        min-height: 315px;
        transform: none;
        margin-bottom: 0;
    }

    .pouch {
        width: 118px;
        height: 220px;
        bottom: 30px;
        padding: 48px 14px 14px;
        border-radius: 8px 8px 26px 26px;
    }

    .pouch span {
        font-size: 16px;
    }

    .pouch strong {
        font-size: 26px;
    }

    .pouch em {
        margin-top: 12px;
        font-size: 18px;
    }

    .pouch-grape {
        left: 112px;
    }

    .pouch-mango {
        left: 210px;
        width: 132px;
        height: 240px;
        bottom: 25px;
    }

    .fruit-orange {
        left: 8px;
        bottom: 95px;
        width: 105px;
        height: 105px;
    }

    .fruit-mango {
        right: 2px;
        bottom: 24px;
        width: 92px;
        height: 74px;
    }

    .ice {
        width: 38px;
        height: 38px;
    }

    .ice-one {
        left: 58px;
        bottom: 34px;
    }

    .ice-two {
        left: 170px;
        bottom: 12px;
    }

    .ice-three {
        right: 72px;
        bottom: 72px;
    }

    .product-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-copy {
        padding: 26px;
    }

    .product-image {
        height: 250px;
        clip-path: none;
    }

    .benefits-row,
    .benefits-grid-page,
    .catalog-grid,
    .product-list,
    .ice-list,
    .related-grid,
    .policy-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-detail,
    .cart-page,
    .checkout-page,
    .success-page {
        padding: 34px 24px;
    }

    .detail-visual {
        min-height: 320px;
    }

    .product-image-button {
        min-height: 320px;
    }

    .product-image-button > img {
        height: 290px;
    }

    .zoom-toolbar > strong {
        display: none;
    }

    .zoom-actions {
        width: 100%;
        justify-content: center;
    }

    .cart-item {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .checkout-form fieldset {
        grid-template-columns: 1fr;
    }

    .cta-band {
        padding: 180px 24px 24px;
    }

    .cta-fruits {
        width: 100%;
        height: 155px;
    }

    .company-form-grid,
    .cnpj-lookup-row {
        grid-template-columns: 1fr;
    }

    .company-fieldset {
        padding: 18px;
    }

    .company-link span {
        display: none;
    }
}
