/*
 * ================================================================
 * ARGENTO PREMIUM ECOLÓGICA
 * Frontend Bridge
 * Parent: Swissup/argento-stripes
 * ================================================================
 */

:root {
    --premium-green: #087f47;
    --premium-green-dark: #056438;
    --premium-green-deep: #034c2b;
    --premium-green-light: #edf8f1;
    --premium-green-soft: #f4faf6;

    --premium-text: #18231d;
    --premium-muted: #66736b;
    --premium-border: #dfe8e2;

    --premium-bg: #f7f9f8;
    --premium-white: #fff;

    --premium-shadow: 0 15px 45px rgba(24, 58, 39, .08);

    --premium-radius: 14px;
    --premium-radius-lg: 22px;
}


/* ================================================================
   BASE
   ================================================================ */

body {
    color: var(--premium-text);
    background: #fff;
}

.premium-ui,
.premium-ui *,
.premium-ui *::before,
.premium-ui *::after {
    box-sizing: border-box;
}

.premium-shell {
    width: min(1240px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

.premium-section {
    padding: 76px 0;
}

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

.premium-eyebrow {
    display: inline-block;

    margin: 0 0 10px;

    color: var(--premium-green);

    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: .11em;
    text-transform: uppercase;
}

.premium-eyebrow--light {
    color: #b8e6ca;
}

.premium-section-heading {
    max-width: 680px;

    margin: 0 auto 36px;

    text-align: center;
}

.premium-section-heading h2 {
    margin: 0 0 12px;

    color: var(--premium-text);

    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
}

.premium-section-heading p {
    margin: 0;

    color: var(--premium-muted);

    font-size: 16px;
    line-height: 1.7;
}

.premium-section-heading--inline {
    display: flex;
    align-items: end;
    justify-content: space-between;

    max-width: none;

    text-align: left;
}

.premium-text-link {
    color: var(--premium-green);

    font-weight: 700;

    text-decoration: none;
}


/* ================================================================
   HEADER
   ================================================================ */

.premium-topbar {
    width: 100%;

    background: var(--premium-green-deep);

    color: #fff;
}

.premium-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: min(1240px, calc(100% - 48px));

    min-height: 36px;

    margin: 0 auto;
}

.premium-topbar__benefits,
.premium-topbar__links {
    display: flex;
    align-items: center;

    gap: 24px;
}

.premium-topbar span,
.premium-topbar a {
    color: rgba(255,255,255,.92);

    font-size: 12px;
    line-height: 1;

    text-decoration: none;
}

.premium-topbar a:hover {
    color: #fff;
    text-decoration: underline;
}

.page-header {
    background: #fff;

    border-bottom: 1px solid var(--premium-border);

    box-shadow: 0 5px 18px rgba(24, 58, 39, .035);
}

.page-header .header.wrapper {
    display: flex;
    align-items: center;

    gap: 22px;

    max-width: 1240px;

    padding-top: 18px;
    padding-bottom: 18px;
}

.page-header .logo {
    flex: 0 0 auto;

    margin: 0 24px 0 0;
}

.page-header .block-search {
    float: none;

    flex: 1 1 auto;

    width: auto;
    max-width: none;

    margin: 0;
}

.page-header .block-search .control {
    padding: 0;
}

.page-header .block-search input {
    height: 46px;

    padding-left: 20px;

    border: 1px solid #d7e1da;
    border-radius: 24px;

    background: #f8faf9;

    box-shadow: none;
}

.page-header .block-search input:focus {
    border-color: var(--premium-green);

    background: #fff;

    box-shadow: 0 0 0 3px rgba(8,127,71,.08);
}

.page-header .block-search .action.search {
    height: 46px;

    right: 8px;
}

.minicart-wrapper {
    margin-left: 0;
}

.nav-sections {
    margin-bottom: 0;

    background: #fff;

    border-bottom: 1px solid var(--premium-border);
}

.navigation {
    max-width: 1240px;

    background: transparent;
}

.navigation .level0 > .level-top {
    padding: 15px 16px;

    color: #29362f;

    font-size: 14px;
    font-weight: 600;
}

.navigation .level0.active > .level-top,
.navigation .level0.has-active > .level-top,
.navigation .level0 > .level-top:hover {
    color: var(--premium-green);
}


/* ================================================================
   HERO
   ================================================================ */

.premium-hero {
    overflow: hidden;

    padding: 58px 0 64px;

    background:
        radial-gradient(circle at 80% 20%, rgba(124,207,153,.22), transparent 32%),
        linear-gradient(135deg, #f1f8f4 0%, #fbfdfb 48%, #eef7f1 100%);
}

.premium-hero__grid {
    display: grid;

    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);

    align-items: center;

    gap: 64px;
}

.premium-hero__content {
    max-width: 650px;
}

.premium-hero h1 {
    margin: 0 0 20px;

    color: #15241b;

    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 1.04;
    font-weight: 650;

    letter-spacing: -.035em;
}

.premium-hero h1 strong {
    display: block;

    color: var(--premium-green);

    font-weight: 750;
}

.premium-hero__content > p {
    max-width: 600px;

    margin: 0 0 28px;

    color: #57645c;

    font-size: 18px;
    line-height: 1.65;
}

.premium-hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.premium-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 24px;

    border: 1px solid transparent;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .15s ease,
        box-shadow .15s ease,
        background-color .15s ease;
}

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

    text-decoration: none;
}

.premium-button--primary {
    background: var(--premium-green);

    color: #fff;
}

.premium-button--primary:hover {
    background: var(--premium-green-dark);

    color: #fff;

    box-shadow: 0 8px 24px rgba(8,127,71,.2);
}

.premium-button--secondary {
    border-color: #cddbd2;

    background: #fff;

    color: var(--premium-text);
}

.premium-button--secondary:hover {
    border-color: var(--premium-green);

    color: var(--premium-green);
}

.premium-button--white {
    background: #fff;

    color: var(--premium-green-dark);
}

.premium-hero__proof {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 26px;
}

.premium-hero__proof span {
    color: #536159;

    font-size: 13px;
}

.premium-hero__visual {
    position: relative;
}

.premium-hero__image-card {
    position: relative;

    padding: 34px;

    border: 1px solid rgba(8,127,71,.09);
    border-radius: 28px;

    background: rgba(255,255,255,.82);

    box-shadow: 0 30px 80px rgba(15, 77, 43, .12);
}

.premium-hero__image-card img {
    display: block;

    width: 100%;
    height: 355px;

    margin: 5px auto 18px;

    object-fit: contain;
}

.premium-hero__badge {
    position: absolute;
    top: 22px;
    left: 22px;

    z-index: 2;

    padding: 7px 12px;

    border-radius: 999px;

    background: var(--premium-green-light);

    color: var(--premium-green-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .04em;
    text-transform: uppercase;
}

.premium-hero__product-name {
    color: #233129;

    font-size: 17px;
    font-weight: 700;
}

.premium-hero__product-name small {
    display: block;

    margin-top: 4px;

    color: var(--premium-muted);

    font-size: 12px;
    font-weight: 400;
}


/* ================================================================
   BENEFÍCIOS
   ================================================================ */

.premium-benefits {
    border-bottom: 1px solid var(--premium-border);

    background: #fff;
}

.premium-benefits__grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding-top: 22px;
    padding-bottom: 22px;
}

.premium-benefit {
    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 0;

    padding: 8px 22px;

    border-right: 1px solid var(--premium-border);
}

.premium-benefit:last-child {
    border-right: 0;
}

.premium-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: var(--premium-green-light);

    color: var(--premium-green);

    font-size: 12px;
    font-weight: 800;
}

.premium-benefit strong,
.premium-benefit small {
    display: block;
}

.premium-benefit strong {
    color: #27332c;

    font-size: 13px;
}

.premium-benefit small {
    margin-top: 3px;

    color: var(--premium-muted);

    font-size: 11px;
}


/* ================================================================
   CATEGORIAS
   ================================================================ */

.premium-category-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.premium-category-card {
    overflow: hidden;

    border: 1px solid var(--premium-border);
    border-radius: var(--premium-radius-lg);

    background: #fff;

    box-shadow: 0 8px 32px rgba(21,63,40,.04);

    color: inherit;

    text-decoration: none;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.premium-category-card:hover {
    transform: translateY(-4px);

    border-color: #b8d8c5;

    box-shadow: var(--premium-shadow);

    color: inherit;

    text-decoration: none;
}

.premium-category-card__image {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 210px;

    padding: 22px;

    background: #f8faf9;
}

.premium-category-card__image img {
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}

.premium-category-card__body {
    padding: 22px;
}

.premium-category-card h3 {
    margin: 0 0 8px;

    color: #223027;

    font-size: 18px;
    font-weight: 700;
}

.premium-category-card p {
    min-height: 57px;

    margin: 0 0 14px;

    color: var(--premium-muted);

    font-size: 13px;
    line-height: 1.5;
}

.premium-category-card span {
    color: var(--premium-green);

    font-size: 13px;
    font-weight: 700;
}


/* ================================================================
   PRODUTOS NATIVOS DO MAGENTO
   ================================================================ */

.premium-section--products {
    padding-top: 40px;
}

.premium-native-products .block-title {
    display: none;
}

.premium-native-products .products-grid .product-items {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;

    margin: 0;
}

.premium-native-products .products-grid .product-item {
    width: auto !important;

    margin: 0 !important;
}

.premium-native-products .product-item-info {
    width: 100% !important;
    height: 100%;

    padding: 18px;

    border: 1px solid var(--premium-border);
    border-radius: var(--premium-radius-lg);

    background: #fff;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.premium-native-products .product-item-info:hover {
    transform: translateY(-3px);

    border-color: #bddbc8;

    box-shadow: var(--premium-shadow);
}

.premium-native-products .product-item-photo {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 220px;

    margin-bottom: 14px;
}

.premium-native-products .product-image-photo {
    max-height: 220px;

    object-fit: contain;
}

.premium-native-products .product-item-name {
    margin-top: 12px;
}

.premium-native-products .product-item-link {
    color: #26342b;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.premium-native-products .price-box {
    margin: 10px 0;
}

.premium-native-products .price {
    color: var(--premium-green-dark);

    font-size: 20px;
    font-weight: 750;
}

.premium-native-products .action.tocart {
    width: 100%;

    min-height: 42px;

    border: 0;
    border-radius: 7px;

    background: var(--premium-green);

    color: #fff;

    font-weight: 700;
}

.premium-native-products .action.tocart:hover {
    background: var(--premium-green-dark);
}


/* ================================================================
   GUIA
   ================================================================ */

.premium-guide {
    padding: 68px 0;

    background:
        radial-gradient(circle at 85% 40%, rgba(120,200,145,.18), transparent 30%),
        linear-gradient(130deg, var(--premium-green-deep), var(--premium-green-dark));

    color: #fff;
}

.premium-guide__grid {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 70px;
}

.premium-guide__content {
    max-width: 570px;
}

.premium-guide h2 {
    margin: 0 0 16px;

    color: #fff;

    font-size: 38px;
    line-height: 1.12;
}

.premium-guide p {
    margin: 0 0 26px;

    color: rgba(255,255,255,.78);

    font-size: 16px;
    line-height: 1.7;
}

.premium-guide__steps {
    display: grid;

    gap: 12px;
}

.premium-guide__steps > div {
    display: flex;
    align-items: center;

    gap: 18px;

    min-height: 72px;

    padding: 16px 20px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;

    background: rgba(255,255,255,.075);
}

.premium-guide__steps strong {
    color: #a9dfbd;

    font-size: 21px;
}

.premium-guide__steps span {
    color: #fff;

    font-size: 14px;
    font-weight: 600;
}


/* ================================================================
   SUPORTE
   ================================================================ */

.premium-support {
    padding: 84px 0;

    background: #fff;
}

.premium-support__grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    align-items: center;

    gap: 70px;
}

.premium-support__primary h2 {
    margin: 0 0 16px;

    color: var(--premium-text);

    font-size: 37px;
    line-height: 1.15;
}

.premium-support__primary p {
    margin: 0 0 26px;

    color: var(--premium-muted);

    font-size: 15px;
    line-height: 1.7;
}

.premium-support__buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.premium-support__cards {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;
}

.premium-mini-card {
    min-height: 145px;

    padding: 24px;

    border: 1px solid var(--premium-border);
    border-radius: 16px;

    background: var(--premium-bg);
}

.premium-mini-card strong,
.premium-mini-card span {
    display: block;
}

.premium-mini-card strong {
    margin-bottom: 8px;

    color: var(--premium-green-dark);

    font-size: 16px;
}

.premium-mini-card span {
    color: var(--premium-muted);

    font-size: 13px;
    line-height: 1.55;
}


/* ================================================================
   CTA FINAL
   ================================================================ */

.premium-final-cta {
    padding: 62px 0;

    border-top: 1px solid var(--premium-border);

    background: var(--premium-green-light);
}

.premium-final-cta .premium-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.premium-final-cta h2 {
    margin: 0 0 8px;

    color: #163224;

    font-size: 30px;
}

.premium-final-cta p {
    margin: 0;

    color: var(--premium-muted);
}

.premium-final-cta__actions {
    display: flex;
    flex: 0 0 auto;

    gap: 10px;
}


/* ================================================================
   MOBILE
   ================================================================ */

@media only screen and (max-width: 1023px) {

    .premium-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .premium-benefit:nth-child(2) {
        border-right: 0;
    }

    .premium-native-products .products-grid .product-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media only screen and (max-width: 767px) {

    .premium-shell {
        width: calc(100% - 32px);
    }

    .premium-section {
        padding: 54px 0;
    }

    .premium-topbar__inner {
        width: calc(100% - 32px);

        min-height: 34px;
    }

    .premium-topbar__benefits span:not(:first-child),
    .premium-topbar__links {
        display: none;
    }

    .premium-topbar__benefits {
        width: 100%;

        justify-content: center;
    }

    .page-header .header.wrapper {
        gap: 12px;

        padding-top: 12px;
        padding-bottom: 12px;
    }

    .page-header .logo {
        margin-right: auto;
    }

    .page-header .block-search {
        flex-basis: 100%;

        order: 10;
    }

    .premium-hero {
        padding: 42px 0;
    }

    .premium-hero__grid {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .premium-hero h1 {
        font-size: 39px;
    }

    .premium-hero__content > p {
        font-size: 16px;
    }

    .premium-hero__actions {
        display: grid;

        grid-template-columns: 1fr;
    }

    .premium-button {
        width: 100%;
    }

    .premium-hero__proof {
        display: grid;

        gap: 7px;
    }

    .premium-hero__image-card {
        padding: 24px;
    }

    .premium-hero__image-card img {
        height: 275px;
    }

    .premium-benefits__grid {
        grid-template-columns: 1fr 1fr;

        width: 100%;

        padding: 8px 12px;
    }

    .premium-benefit {
        padding: 13px 8px;
    }

    .premium-benefit:nth-child(2n) {
        border-right: 0;
    }

    .premium-benefit:nth-child(-n+2) {
        border-bottom: 1px solid var(--premium-border);
    }

    .premium-benefit__icon {
        display: none;
    }

    .premium-section-heading,
    .premium-section-heading--inline {
        display: block;

        margin-bottom: 28px;

        text-align: left;
    }

    .premium-section-heading h2 {
        font-size: 29px;
    }

    .premium-section-heading--inline .premium-text-link {
        display: inline-block;

        margin-top: 12px;
    }

    .premium-category-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .premium-category-card__image {
        height: 145px;

        padding: 14px;
    }

    .premium-category-card__body {
        padding: 16px;
    }

    .premium-category-card h3 {
        font-size: 15px;
    }

    .premium-category-card p {
        display: none;
    }

    .premium-category-card span {
        font-size: 11px;
    }

    .premium-native-products .products-grid .product-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .premium-native-products .product-item-info {
        padding: 12px;
    }

    .premium-native-products .product-item-photo {
        min-height: 155px;
    }

    .premium-native-products .product-image-photo {
        max-height: 155px;
    }

    .premium-native-products .product-item-link {
        font-size: 12px;
    }

    .premium-native-products .price {
        font-size: 17px;
    }

    .premium-guide {
        padding: 54px 0;
    }

    .premium-guide__grid {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .premium-guide h2 {
        font-size: 31px;
    }

    .premium-support {
        padding: 56px 0;
    }

    .premium-support__grid {
        grid-template-columns: 1fr;

        gap: 36px;
    }

    .premium-support__primary h2 {
        font-size: 30px;
    }

    .premium-support__cards {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .premium-mini-card {
        min-height: 128px;

        padding: 17px;
    }

    .premium-final-cta {
        padding: 48px 0;
    }

    .premium-final-cta .premium-shell {
        display: block;
    }

    .premium-final-cta h2 {
        font-size: 27px;
    }

    .premium-final-cta__actions {
        display: grid;

        margin-top: 24px;

        gap: 9px;
    }

}


@media only screen and (max-width: 420px) {

    .premium-hero h1 {
        font-size: 35px;
    }

    .premium-category-grid {
        grid-template-columns: 1fr 1fr;
    }

}
