@charset "utf-8";
/* CSS Document */

/*-- Fonts --*/


:root {
    /*-- Colors --*/
    --color-primary: #00ADBB;
    --color-secondary: #0CADBA;
    --color-tertiary: #005F6B;
    --color-quaternary: #a4ebf1;
    --color-dark: #162731;
    --color-black: #000;
    --color-white: #fff;
    --color-light: #DFF6F9;

    /*-- Typography --*/
    --font-gotham: gotham, sans-serif;
    --font-avenir: avenir-next-lt-pro, sans-serif;

    /* Setas dos carrosséis (Swiper) — trocar o asset aqui, sem alterar HTML */
    --carousel-nav-icon: url("../img/arrow-circle.svg");
    /* Banner topo páginas internas — Quem Somos (Figma 168:1569) */
    --color-page-banner: #017486;
}



/*=== General ===*/
html {
    overflow-x: hidden;
}
body {
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-gotham);
    font-weight: 700;
    margin-bottom: 0;
}
p {
    margin-bottom: 0;
}
a {
    text-decoration: none;
    transition: all .3s ease;
}
a:hover {
    color: inherit;
}
:focus {
    outline: none;
    border: none;
}
img {
    max-width: 100%;
    height: auto;
}
img.aligncenter {
    margin: 0 auto;
    display: block;
}
img.alignleft, figure.alignleft {
    margin: 0 30px 30px 0;
    float: left;
}
img.alignright, figure.alignright {
    margin: 0  0 30px 30px;
    float: right;
}
img.position-absolute {
    max-width: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*=== Padding ===*/
.pb-40 {
    padding-bottom: 40px !important;
}
.pt-40 {
    padding-top: 40px !important;
}
.pt-56 {
    padding-top: 56px !important;
}
.pb-56 {
    padding-bottom: 56px !important;
}

/*=== Backgrounds ===*/
.bg-primary {
    background: var(--color-primary);
}

/*=== Header & Menu ===*/
.header {
    height: 65px;
    border-bottom: 1px solid var(--color-black);
    background: var(--color-white);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}
.header.fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-200%);
    transition: transform 0.4s ease;
}
.header.fix.active {
    transform: translateY(0);
}
.header .navbar {
    width: 100%;
    position: unset;
}
.header .navbar-brand {
    padding: 0;
}
.header .navbar-brand img {
    width: 78px;
}
.header .nav-link {
    color: var(--color-black);
    font-family: var(--font-gotham);
    font-size: 12px;
    font-weight: 600;
    padding: 23px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.header .nav-link:hover {
    color: var(--color-primary);
}
.header .ico-arrow {
    transition: transform 0.3s ease;
}
.header .simple-menu ul li a .ico-arrow-right {
    transition: transform 0.3s ease;
}
.header .simple-menu ul li a:hover {
    color: var(--color-primary);
}
.header .search-btn {
    display: flex;
    align-items: center;
}
.header .search-btn img {
    width: 20px;
    height: 20px;
}
.header .nav-search {
    margin-left: 30px;
}
.header .mobile-menu-toggle,
.header .mobile-navbar-brand,
.header .mobile-nav-search,
.header .mobile-menu-close,
.header .mobile-submenu-header {
    display: none;
}

/* Dropdown Base */
.header .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin: 0;
    border: none;
    border-radius: 0;
    padding: 0;
    top: 100%;
}
.header .dropdown-menu .container {
    padding-left: 36px;
}
.header .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Mega Menu Produtos */
.header .dropdown-mega {
    position: unset !important;
}
.header .mega-menu {
    position: absolute;
    width: 100vw;
    left: 0;
    right: auto;
    padding: 28px 0 42px;
    border-bottom: 1px solid var(--color-black);
    border-top: 1px solid var(--color-black);
    background: var(--color-white);
}
.mega-title {
    color: var(--color-black);
    font-family: var(--font-gotham);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}
.mega-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-right: 1px solid var(--color-primary);
}
.col-md-6 .mega-list {
    border-right: none;
}
.mega-list a {
    display: flex;
    align-items: center;
    gap: 20px;
}
.mega-list img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.mega-list span {
    color: var(--color-black);
    font-weight: 400;
    font-family: var(--font-gotham);
    transition: color 0.3s ease;
    line-height: 14px;
}
.mega-list a:hover span {
    color: var(--color-primary);
}
.mega-list small {
    font-size: 10px;
}
.mega-divider {
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 357px;
    background: var(--color-primary);
}

/* Submenu Campanhas */
.header .simple-menu {
    width: 219px;
    border-bottom: 1px solid var(--color-black);
    background: var(--color-white);
    left: -20px;
}
.simple-menu ul li:not(:last-child) {
    border-bottom: 1px solid #939598;
}
.simple-menu ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: var(--color-dark);
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-gotham);
    line-height: 14px;
}

/* Busca global do header */
.header-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 4000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.header-search-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.header-search-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}
.header-search-overlay__content {
    position: relative;
    z-index: 1;
    background: #0cadba;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
}
.header-search-overlay__close {
    position: absolute;
    top: 20px;
    right: 24px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.header-search-overlay__close img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}
.header-search-form {
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: 1fr 56px;
}
.header-search-form input {
    height: 56px;
    border: 1px solid #fff;
    border-right: 0;
    background: transparent;
    color: #fff;
    padding: 0 18px;
    font-family: var(--font-gotham);
    font-size: 16px;
    line-height: 20px;
}
.header-search-form input::placeholder {
    color: #fff;
    opacity: 1;
}
.header-search-form input:focus {
    outline: none;
}
.header-search-form button[type="submit"] {
    height: 56px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

body.search-overlay-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    body.menu-mobile-open {
        overflow: hidden;
    }

    .header .dropdown-mega, .header .dropdown {
        position: unset !important;
    }

    .header .container {
        max-width: 100%;
    }

    .header .navbar {
        display: grid;
        grid-template-columns: 24px 1fr 24px;
        align-items: center;
        gap: 16px;
    }

    .header .desktop-navbar-brand {
        display: none;
    }

    .header .mobile-menu-toggle,
    .header .mobile-navbar-brand,
    .header .mobile-nav-search {
        display: flex;
        align-items: center;
    }

    .header .mobile-menu-toggle,
    .header .mobile-menu-close,
    .header .mobile-submenu-back {
        border: 0;
        background: transparent;
        padding: 0;
        cursor: pointer;
    }

    .header .mobile-menu-toggle img,
    .header .mobile-menu-close img,
    .header .mobile-submenu-back img {
        display: block;
    }

    .header .mobile-navbar-brand {
        justify-content: center;
    }

    .header .mobile-nav-search {
        justify-content: flex-end;
        margin-left: 0;
    }

    .header .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        background: var(--color-white);
        border-right: 1px solid var(--color-black);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1300;
        display: block !important;
        visibility: hidden;
        transform: translateX(-100%);
        transition: transform 0.35s ease, visibility 0.35s ease;
    }

    .header.mobile-menu-open .navbar-collapse {
        visibility: visible;
        transform: translateX(0);
    }

    .header .mobile-menu-close {
        position: fixed;
        top: 17px;
        right: 20px;
        width: 24px;
        height: 24px;
        align-items: center;
        justify-content: center;
        z-index: 1500;
        display: none;
    }

    .header .mobile-menu-close img {
        width: 20px;
        height: 20px;
    }

    .header.mobile-menu-open .mobile-menu-close {
        display: flex;
    }

    .header .navbar-nav {
        flex-direction: column;
        align-items: stretch !important;
        margin: 0 !important;
        padding: 0 24px 24px !important;
    }

    .header .navbar-nav > .nav-item {
        border-bottom: 1px solid var(--color-primary);
    }

    .header .nav-link {
        padding: 24px 0px;
        justify-content: space-between;
        font-size: 16px;
        line-height: 16px;
        font-weight: 400;
    }

    .header .nav-search:not(.mobile-nav-search) {
        display: none;
    }

    .header .dropdown-menu {
        top: 0;
        left: 0;
        border: 0;
        width: 100%;
        min-height: 100dvh;
    }

    .header .dropdown:hover > .dropdown-menu {
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
    }

    .header .dropdown:hover > .mobile-submenu-panel.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    .header .mobile-submenu-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100dvh;
        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
        z-index: 2;
        background: var(--color-white);
        overflow-y: auto;
    }

    .header .mobile-submenu-panel.is-open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .header .mobile-submenu-header {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 20px;
        border-bottom: 1px solid #000;
        cursor: pointer;
    }

    .header .mobile-menu-root-header {
        cursor: default;
    }

    .header .mobile-menu-root-header .mobile-submenu-back-placeholder {
        display: block;
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }

    .header .mobile-submenu-title {
        color: var(--color-black);
        font-family: var(--font-gotham);
        font-size: 20px;
        font-weight: 400;
        line-height: 16px;
        text-transform: uppercase;
    }

    .header .simple-menu {
        left: 0;
        width: 100%;
        border-bottom: 0;
    }

    .header .simple-menu ul {
        margin: 0;
        padding: 0;
    }

    .header .simple-menu ul li a {
        padding: 16px 20px;
        color: var(--color-black);
        font-family: var(--font-gotham);
        font-size: 13px;
        line-height: 16px;
        text-transform: uppercase;
    }

    .header .mega-menu {
        padding: 0;
        border: 0;
    }

    .header .mega-menu .container,
    .header .mega-menu .row {
        margin: 0;
        padding: 0;
        display: block;
    }

    .header .mega-menu [class*="col-"] {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .header .mega-title {
        margin: 0;
        padding: 18px 0 16px;
        margin: 0 24px;

        font-size: 12px;
        text-transform: uppercase;
        line-height: 16px;
    }
    .header .col-md-6.ps-lg-5 .mega-title {
        border-top: 1px solid var(--color-primary);
        margin-top: 11px;
    }
    .simple-menu ul li {
        border-bottom: 1px solid var(--color-primary) !important;
    }

    .dropdown-menu.simple-menu ul {
        margin: 0 24px;
    }

    .header .mega-list {
        gap: 0;
        border-right: 0;
        padding: 0 24px;
    }

    /* .header .mega-list li {
        border-bottom: 1px solid #d6d6d6;
    } */

    .header .mega-list a {
        padding: 14px 0;
        gap: 12px;
    }

    .header .mega-list span {
        color: var(--color-black);
        font-family: var(--font-gotham);
        font-size: 12px;
        text-transform: uppercase;
        line-height: 16px;
        font-weight: 400;
    }

    .header .mega-list img {
        width: 52px;
        height: 52px;
    }

    .header .ico-arrow {
        transform: rotate(-90deg);
    }
}

/*=== Components ===*/
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-tertiary);
    color: var(--color-white);
    text-align: center;
    font-size: 13.527px;
    line-height: normal;
    height: 50px;
    padding: 0 18px;
    transition: all 0.3s ease;
    font-family: var(--font-gotham);
    font-weight: 400;
}
.button:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/*=== Banner Home ===*/
.banner-home {
    height: 550px;
    background: var(--color-secondary);
    position: relative;
    overflow: hidden;
}
.banner-home .container {
    padding-left: 36px;
}
.banner-home .swiper,
.banner-home .swiper-wrapper,
.banner-home .swiper-slide {
    height: 100%;
}
.banner-home .content-wrapper {
    z-index: 2;
}
.banner-home h1 {
    color: var(--color-white);
    font-size: 40px;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 400;

}
.banner-home h1 strong {
    font-weight: 600;
    font-size: 45px;
}
.banner-home p {
    color: var(--color-white);
    font-size: 16.527px;
    line-height: 1.4;
    margin-bottom: 14px;
    font-weight: 400;
}
.banner-home p.banner-legenda {
    font-size: 11px;
    font-weight: 400;
}
.banner-home .img-banner {
    bottom: 0;
    right: 0;
    max-height: 100%;
    z-index: 1;
    pointer-events: none;
}
.banner-home h1 span {
    position: relative;
    text-decoration: none !important;
    color: var(--color-primary);
    padding: 0 5px;
}
.banner-home h1 span::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 77%;
    background-color: var(--color-quaternary);
    z-index: -1;
    transform: translateY(-50%);
    top: 50%;
}
.banner-home .button {
    margin-top: 24px;
}

/*=== Banner página interna (ex.: Quem Somos — Figma 168:1569) ===*/
.banner-page {
    background: var(--color-page-banner);
    min-height: 225px;
    position: relative;
    overflow: hidden;
}
.banner-page.color-primary {
    background: var(--color-primary);
}
.banner-page .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 225px;
    position: relative;
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 28px;
    padding-bottom: 28px;
}
.banner-page__intro {
    position: relative;
    z-index: 2;
    max-width: 100%;
}
.banner-page .section-title-area .title,
.banner-page .section-title-area .desc {
    color: var(--color-white);
}
.banner-page .section-title-area .title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: normal;
    font-family: var(--font-gotham);
}
.banner-page .section-title-area .desc {
    font-size: 14px;
    font-weight: 500;
    max-width: 452px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    line-height: normal;
}
.banner-page__img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: auto;
    max-width: min(925px, 70vw);
    max-height: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
    object-position: left bottom;
}

/*=== Banner revendedores oficiais — Onde comprar (Figma 253:3794) ===*/
.banner-where-to-buy {
    background: var(--color-white);
}
.banner-where-to-buy__box {
    position: relative;
    z-index: 0;
    overflow: hidden;
    min-height: 290px;
    padding: 42px 42px;
    box-sizing: border-box;
    background-color: var(--color-primary);
    background-repeat: no-repeat;
    background-position: center center;
}
.banner-where-to-buy__row {
    position: relative;
    z-index: 1;
    min-height: 210px;
}
.banner-where-to-buy__title {
    margin: 0;
    max-width: 192px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 27.826px;
    line-height: 1.15;
    color: var(--color-white);
}
.banner-where-to-buy__content {
    max-width: 385px;
}
.banner-where-to-buy__lead {
    margin: 0 0 12px;
    font-family: var(--font-avenir);
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    color: var(--color-white);
}
.banner-where-to-buy__list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: var(--color-white);
}
.banner-where-to-buy__list li + li {
    margin-top: 4px;
}

/*=== Texto legal — Onde comprar (Figma 224:3387 / bloco 248:3712) ===*/
.legal-where-to-buy {
    padding: 80px 0;
    background: var(--color-white);
}
.legal-where-to-buy__text {
    max-width: 792px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-avenir);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: var(--color-black);
}
.legal-where-to-buy__text strong {
    font-weight: 700;
}
.legal-where-to-buy__text p {
    margin: 0 0 1.1em;
}
.legal-where-to-buy__text p:last-child {
    margin-bottom: 0;
}

/*=== Contato — formulário (Figma 224:2240) ===*/
.contact-form {
    padding: 51px 0 96px;
    background: var(--color-white);
}
.contact-form__row {
    align-items: flex-start;
    --bs-gutter-x: 32px;
    --bs-gutter-y: 40px;
}
.contact-form__figure {
    margin: 0 0 0 auto;
    max-width: 565px;
}
.contact-form__photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 565 / 602;
    object-fit: cover;
}
.contact-form__title {
    margin: 0 0 10px;
    max-width: 520px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 36px;
    line-height: 1.2;
    color: var(--color-dark);
}
.contact-form__lead {
    margin: 0 0 44px;
    max-width: 382px;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: var(--color-dark);
}
.contact-form__form {
    max-width: 568px;
}
.contact-form__field {
    margin-bottom: 17px;
}
.contact-form__field:last-of-type {
    margin-bottom: 0;
}
.contact-form__label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-avenir);
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    text-transform: uppercase;
    color: var(--color-tertiary);
}
.contact-form__control {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 43px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid var(--color-black);
    background: var(--color-white);
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: var(--color-dark);
    border-radius: 0;
}
.contact-form__control::placeholder {
    color: #7a8286;
}
.contact-form__control:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.contact-form__textarea {
    height: auto;
    min-height: 202px;
    padding-top: 12px;
    padding-bottom: 12px;
    resize: vertical;
}
.contact-form__select-wrap {
    position: relative;
}
.contact-form__select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 40px;
    color: #7a8286;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6' fill='none'%3E%3Cpath d='M1 1L5.5 5L10 1' stroke='%23000000' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 11px 6px;
}
.contact-form__actions {
    margin-top: 12px;
}
.contact-form__submit {
    width: 150px;
    min-width: 150px;
    height: 50px;
    padding-left: 0;
    padding-right: 0;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
}

/*=== Texto jurídico / institucional — .text-default (Figma privacidade 224:3033, cookies 224:3042) ===*/
.text-default {
    padding: 73px 0 96px;
    background: var(--color-white);
}
.text-default__prose {
    max-width: 792px;
    margin: 0 auto;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: var(--color-black);
}
.text-default__heading {
    margin: 1.25em 0 1.5em;
    font-family: var(--font-avenir);
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: var(--color-black);
}
.text-default__prose > .text-default__heading:first-child {
    margin-top: 0;
}
.text-default__subheading {
    margin: 0 0 1em;
    font-family: var(--font-avenir);
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: var(--color-black);
}
.text-default__prose p + .text-default__subheading {
    margin-top: 1.5em;
}
.text-default__prose > p {
    margin: 0 0 1.5em;
}
.text-default__prose > p:last-child {
    margin-bottom: 0;
}
.text-default__prose a {
    color: var(--color-primary);
    text-decoration: none;
}
.text-default__prose a:hover {
    text-decoration: underline;
}
.text-default__list {
    margin: 0 0 1.5em;
    padding-left: 24px;
    list-style: disc;
}
.text-default__list li {
    margin-bottom: 0;
    padding-left: 0;
}
.text-default__list li + li {
    margin-top: 0.35em;
}
.text-default__list strong {
    font-weight: 700;
}

/*=== Pele sensível — elementos essenciais (Figma 260:4261) ===*/
.essencial-elements {
    padding: 64px 0 88px;
    background-image:
        linear-gradient(180deg, var(--color-primary) 54.241%, rgb(255, 255, 255) 100%),
        linear-gradient(90deg, var(--color-light) 0%, var(--color-light) 100%);
}
.essencial-elements__title {
    margin: 0 auto 36px;
    max-width: 432px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 36px;
    text-align: center;
    color: var(--color-dark);
}
.essencial-elements__intro {
    margin: 0 auto 48px;
    max-width: 791px;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: var(--color-dark);
}
.essencial-elements__figure {
    margin: 0;
    padding: 0;
}
.essencial-elements__media {
    max-width: 430px;
    margin: 0 auto 20px;
}
.essencial-elements__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 430 / 341;
    object-fit: cover;
}
.essencial-elements__caption {
    max-width: 409px;
    margin: 0 auto;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    color: var(--color-dark);
}

/*=== Nossas ceramidas — o que fazem as ceramidas (Figma 260:4994) ===*/
.what-are-ceramidas {
    min-height: 540px;
    background-color: var(--color-light);
    background-image: url("../img/fundo-ceramidas.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto min(540px, 100%);
    overflow: hidden;
}
.what-are-ceramidas .container {
    min-height: 540px;
    padding-top: 56px;
    padding-bottom: 64px;
}
.what-are-ceramidas__inner {
    position: relative;
    z-index: 1;
    max-width: 100%;
}
.what-are-ceramidas__title {
    margin: 0 0 16px;
    max-width: 276px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 32.255px;
    line-height: 1.1;
    color: var(--color-dark);
}
.what-are-ceramidas__intro {
    margin: 0 0 40px;
    max-width: 379px;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: var(--color-dark);
}
.what-are-ceramidas__item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 280px;
}
.what-are-ceramidas__features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}
@media (min-width: 992px) {
    .what-are-ceramidas__features {
        flex-wrap: nowrap;
    }
    .what-are-ceramidas__item {
        flex: 1 1 0;
        min-width: 0;
    }
}
.what-are-ceramidas__icon-wrap {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.what-are-ceramidas__icon {
    display: block;
    width: 68px;
    height: 68px;
    object-fit: contain;
}
.what-are-ceramidas__item-text {
    min-width: 0;
}
.what-are-ceramidas__item-title {
    margin: 0 0 8px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 20.735px;
    line-height: 1.1;
    color: var(--color-dark);
}
.what-are-ceramidas__item-desc {
    margin: 0;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: var(--color-dark);
}

/*=== Nossas ceramidas — todos os tipos de pele (Figma 260:4993) ===*/
.great-for-skincare {
    padding: 56px 0 72px;
    background-color: var(--color-primary);
    background-image: url("../img/bg-todo-tipo-de-pele.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}
.great-for-skincare .container {
    position: relative;
    z-index: 1;
}
.great-for-skincare__title {
    margin: 0 auto 40px;
    max-width: 370 px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 30.036px;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-white);
}
.great-for-skincare__circles {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}
.great-for-skincare__circle {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: min(332px, 30vw);
    max-width: 100%;
    aspect-ratio: 1;
    box-sizing: border-box;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 36px) clamp(16px, 3vw, 28px);
}
.great-for-skincare__circle--left {
    z-index: 1;
}
.great-for-skincare__circle--center {
    z-index: 3;
}
.great-for-skincare__circle--right {
    z-index: 2;
}
@media (min-width: 992px) {
    .great-for-skincare__circle--center,
    .great-for-skincare__circle--right {
        margin-left: clamp(-56px, -5vw, -40px);
    }
}
.great-for-skincare__text {
    margin: 0;
    max-width: 204px;
    font-family: var(--font-avenir);
    font-size: 16px;
    line-height: normal;
    text-align: center;
    color: var(--color-white);
}
.great-for-skincare__grafismo {
    position: absolute;
    pointer-events: none;
    object-fit: contain;
    z-index: 2;
}
.great-for-skincare__grafismo--1 {
    width: min(127px, 42%);
    height: auto;
    left: 7px;
    top: 0;
    transform: translate(-12%, -12%);
}
.great-for-skincare__grafismo--2 {
    width: min(104px, 38%);
    height: auto;
    right: 7px;
    bottom: 20px;
    transform: translate(12%, 12%);
}

/*=== Nossas ceramidas — otimize sua rotina (Figma 308:5043) ===*/
.optimal-skincare {
    padding: 56px 0 72px;
    background: var(--color-white);
}
.optimal-skincare__title {
    margin: 0 auto 48px;
    max-width: 420px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 30.036px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-black);
}
.optimal-skincare__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 16px;
    align-items: start;
    justify-items: center;
}
.optimal-skincare__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 200px;
}
.optimal-skincare__thumb {
    width: 133px;
    height: 133px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: -6px;
}
.optimal-skincare__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.optimal-skincare__connector {
    position: relative;
    display: block;
    width: 1px;
    height: 45px;
    margin: 0;
    flex-shrink: 0;
    background: var(--color-tertiary);
}
.optimal-skincare__connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 7px;
    height: 7px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--color-tertiary);
}
.optimal-skincare__label {
    margin: 0 0 28px;
    min-width: 183px;
    min-height: 42px;
    padding: 4px 4px;
    box-sizing: border-box;
    border: 1px solid var(--color-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-tertiary);
}
.optimal-skincare__step--pre-hydration .optimal-skincare__label {
    letter-spacing: -0.04em;
}
.optimal-skincare__desc {
    margin: 0;
    max-width: 182px;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 12px;
    line-height: normal;
    color: var(--color-black);
}

/*=== Text Marquee ===*/
.text-marquee {
    background: var(--color-quaternary);
    height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.text-marquee .swiper {
    width: 100%;
}
.text-marquee .swiper-wrapper {
    transition-timing-function: linear !important;
}
.text-marquee .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    font-family: var(--font-gotham);
    font-weight: 500 ;
    text-transform: uppercase;
}
.text-marquee .dot {
    margin: 0 45px;
    font-size: 18px;
    line-height: 1;
}

/*=== Water Section ===*/
.water-section {
    height: 380px;
    background: url('../img/home/bg-agua.webp') no-repeat center center;
    background-size: cover;
}
.water-section h2 {
    color: var(--color-dark);
    text-align: center;
    font-family: var(--font-gotham);
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
    max-width: 503px;
    margin: 0 auto 15px auto;
}
.water-section p {
    text-align: center;
    font-weight: 500;
    max-width: 452px;
    margin: 0 auto;
}

/*=== Components Reusables ===*/
.link-saiba-mais {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-gotham);
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: color 0.3s ease;
}
.link-saiba-mais:hover {
    color: var(--color-dark);
}

/*=== Products Carousel Section ===*/
.products-carousel-section {
    padding: 45px 0 0;
}
.products-carousel-section .text-center .section-title-area {
    margin-bottom: 35px;
}
/* Bloco IMC no fim do <main> (após ceramidas) — espaço vertical próprio */
.products-carousel-section.products-carousel-section--secondary {
    padding-top: 56px;
    padding-bottom: 48px;
}
.section-title-area .subtitle {
    color: var(--color-dark);
    font-weight: 500;
    margin-bottom: 10px;
    font-family: var(--font-gotham);
}
.section-title-area .title {
    color: var(--color-dark);
    font-size: 38.088px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1;
}
.section-title-area .desc {
    font-weight: 400;
    margin-bottom: 30px;
}
.products-carousel-section .section-title-area .desc {
    max-width: 214px;
}

/* Category Tag (reutilizável: product-card, product-detail) */
.category-tag {
    display: inline-block;
    border-radius: 100px;
    background: var(--color-primary);
    color: var(--color-dark);
    font-family: var(--font-gotham);
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    line-height: normal;
}

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 4px;
}
.product-card .category-tag {
    padding: 4px 12px;
    margin-bottom: 6px;
    text-align: left;
}
.product-card .product-img-wrapper {
    margin:0 auto 20px;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card .product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.product-card .product-card__img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.product-card .product-card__img-stack {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 180px;
    margin-inline: auto;
}
.product-card .product-card__img-stack > img {
    display: block;
    margin-inline: auto;
}
.product-card .product-card__img-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}
.product-card .product-card__img-link--hover:hover .product-card__img-hover {
    opacity: 1;
}
/* Product rating — reusable (products carousel, spotlight carousel, etc.) */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.product-rating__stars {
    display: flex;
    gap: 2px;
    line-height: 0;
}
.product-rating__stars img {
    display: block;
    width: auto;
    height: 12px;
}
.product-rating__text {
    color: var(--color-dark);
    font-size: 8px;
    font-weight: 400;
}
.product-card h3 {
    color: var(--color-dark);
    font-weight: 500;
    margin-bottom: 20px;
    min-height: 34px;
    font-size: 14px;
}
.product-card p {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Navegação Swiper compartilhada (.custom-nav): ícone só no CSS, sem <img> inline */
.custom-nav.swiper-button-prev::after,
.custom-nav.swiper-button-next::after {
    display: none;
}
.custom-nav.swiper-button-prev::before,
.custom-nav.swiper-button-next::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--carousel-nav-icon) no-repeat center / contain;
    pointer-events: none;
}
.custom-nav.swiper-button-prev::before {
    transform: rotate(180deg);
}

/* Swiper Navigation — carrossel de produtos */
.products-carousel-section .swiper-button-prev,
.products-carousel-section .swiper-button-next {
    width: 36px;
    height: 36px;
    margin-top: -18px;
    z-index: 10;
}
.products-carousel-section .swiper-button-prev {
    left: 0;
}
.products-carousel-section .swiper-button-next {
    right: 0;
}

/* Swiper Scrollbar Custom */
.products-carousel-section .custom-scrollbar {
    height: 5px;
    background: linear-gradient(0deg, #DFF6F9 0%, #DFF6F9 100%), #DFF6F9;
    border-radius: 0;
    position: relative;
    width: 100%;
}
.products-carousel-section .swiper-scrollbar-drag {
    background: var(--color-dark);
    border-radius: 0;
}

/*=== Spotlight carousel (“Quem sabe, sabe.”) ===*/
.how-to-section {
    background: var(--color-light);
    padding: 84px 0 84px;
}
.how-to-section__title {
    text-align: center;
    margin-bottom: 20px;
}
.how-to-section__subtitle {
    text-align: center;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: var(--color-dark);
    text-transform: uppercase;
    margin-bottom: 24px;
}
.how-to-section__steps {
    max-width: 870px;
    margin: 0 auto;
    row-gap: 44px;
}
.how-to-step {
    text-align: left;
    max-width: 178px;
    margin: 0 auto;
}
.how-to-step__icon {
    width: 178px;
    height: 178px;
    margin: 0 auto 20px;
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-to-step__icon img {
    max-width: 120px;
    max-height: 160px;
    width: auto;
    height: auto;
}
.how-to-step__heading {
    font-family: var(--font-avenir);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    color: var(--color-dark);
    margin-bottom: 10px;
    max-width: 178px;
    text-align: left;
}
.how-to-step__text {
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.45;
    color: var(--color-dark);
    max-width: 178px;
    margin: 0;
    text-align: left;
}

/*=== Videos Section (Figma node 224:320) ===*/
.video-section {
    background: var(--color-white);
    padding: 84px 0;
}
.video-section__header {
    margin-bottom: 34px;
}
.video-section__title {
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 0;
}
.video-section__grid {
    margin-top: 20px;
}
.video-card {
    display: block;
    position: relative;
    overflow: hidden;
    line-height: 0;
}
.video-card__img {
    width: 100%;
    display: block;
    height: auto;
}
.video-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--color-white);
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-card__play::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid var(--color-primary);
    margin-left: 2px; /* centraliza o triângulo visualmente */
}

/*=== Spotlight carousel (“Quem sabe, sabe.”) ===*/
.spotlight-carousel-section {
    padding: 20px 0 50px;
    background: var(--color-white);
}
.spotlight-carousel-section .spotlight-carousel-heading {
    margin-bottom: 32px;
}
.spotlight-carousel-section .spotlight-carousel-heading .title {
    margin-bottom: 0;
}
.spotlight-carousel-slide {
    align-items: center;
}
.spotlight-carousel-slide__visual {
    width: 280px;
    height: 280px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.spotlight-carousel-slide__visual img {
    max-height: 240px;
    width: auto;
    max-width: 100%;
}
.spotlight-carousel-slide__lead {
    font-family: var(--font-gotham);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: normal;
    margin-bottom: 12px;
    max-width: 580px;
}
.spotlight-carousel-slide__body {
    margin-bottom: 16px;
    max-width: 528px;
}
.spotlight-carousel-slide__cta {
    font-size: 18px;
}
.spotlight-carousel-section .swiper-button-prev,
.spotlight-carousel-section .swiper-button-next {
    width: 36px;
    height: 36px;
    top: 50%;
    margin-top: -18px;
    z-index: 10;
}
.spotlight-carousel-section .swiper-button-prev {
    left: 0;
}
.spotlight-carousel-section .swiper-button-next {
    right: 0;
}
.spotlight-carousel-section .spotlight-carousel-pagination {
    position: relative;
    margin-top: 24px;
    text-align: center;
}
.spotlight-carousel-section .spotlight-carousel-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    margin: 0 6px;
    background: transparent;
    border: 1px solid var(--color-tertiary);
    opacity: 1;
}
.spotlight-carousel-section .spotlight-carousel-pagination .swiper-pagination-bullet-active {
    background: var(--color-tertiary);
}


/*=== Best Seller Section ===*/
.best-seller-section {
    padding: 40px 0;
    background: var(--color-white);
}
.best-seller-section .title {
    max-width: 420px;
}
.best-seller-media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.best-seller-image {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Image left, copy right (same block as default best-seller) */
.best-seller-section--reverse > .container > .row {
    flex-direction: column;
}


.title {
    color: var(--color-dark);
    font-family: var(--font-gotham);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 14px;
}

.best-seller-desc {
    max-width: 420px;
    margin-bottom: 18px;
}
.best-seller-desc.legal {
    font-size: 10px;
}

.link-primary-underline {
    color: var(--color-primary);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 4px;
    text-decoration-thickness: auto;
    transition: color 0.3s ease;
    font-family: var(--font-gotham);
    font-weight: 500;
}

.link-primary-underline:hover {
    color: var(--color-dark);
}

.best-seller-link {
    font-size: 18px;
}

/* Variação — Quem Somos “Profundo entendimento da pele” (Figma 168:646) */
.best-seller-section--profundo .title {
    line-height: 34px;
}
.best-seller-section--profundo .best-seller-desc {
    max-width: 352px;
}

/*=== Blog — Figma “BLOG - HARMONIA DA PELE” (node 137:4504) ===*/
.blog-section {
    padding: 50px 0 50px;
    background: var(--color-primary);
    color: var(--color-white);
}
.blog-section__intro {
    padding-right: 1rem;
}
/* Reusa .section-title-area .subtitle / .title / .desc — só cor (e ajustes de texto) no fundo primário */
.blog-section .section-title-area .subtitle,
.blog-section .section-title-area .title,
.blog-section .section-title-area .desc {
    color: var(--color-white);
}
.blog-section .section-title-area .title {
    margin-bottom: 20px;
}
.blog-section .section-title-area .desc {
    line-height: 1.45;
    margin-bottom: 24px;
    max-width: 180px;
}
/* Reusa .link-saiba-mais — só cor no fundo primário */
.blog-section .link-saiba-mais {
    color: var(--color-white);
    text-underline-offset: 3px;
}
.blog-section .link-saiba-mais:hover {
    color: var(--color-white);
    opacity: 0.85;
}
.blog-tile {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: transparent;
}
.blog-tile__accent {
    width: 100%;
    height: 6px;
    flex-shrink: 0;
    background: var(--color-dark);
}
.blog-tile__media {
    display: block;
    overflow: hidden;
    line-height: 0;
    background: var(--color-dark);
}
.blog-tile__img {
    width: 100%;
    aspect-ratio: 406 / 255;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.blog-tile__media:hover .blog-tile__img {
    transform: scale(1.02);
}
.blog-tile__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 28px;
    background: #dff6f9;
}
.blog-tile__heading {
    font-family: var(--font-gotham);
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    color: var(--color-dark);
    margin-bottom: 16px;
}
.blog-tile__heading a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.blog-tile__heading a:hover {
    color: var(--color-tertiary);
}
.blog-tile__excerpt {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--color-dark);
    margin-bottom: 20px;
}
.blog-tile__read-more {
    margin-top: auto;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    color: var(--color-tertiary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}
.blog-tile__read-more:hover {
    color: var(--color-dark);
}

/*=== Na Mídia (Figma node 130:1763) ===*/
.media-section {
    padding: 50px 0;
    background: var(--color-white);
}
.media-section__intro {
    padding-right: 1rem;
}
.media-section .section-title-area .desc {
    max-width: 191px;
}

/*=== Instagram — “Junte-se a nós” (Figma node 137:4488) ===*/
.instagram-section {
    position: relative;
    background: var(--color-white);
    padding: 48px 0 0;
    overflow: hidden;
}
/* Faixa fixa inferior (#A4EBF1), por baixo do carrossel (metade inferior das fotos) */
.instagram-section__band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 231px;
    background: #a4ebf1;
    z-index: 0;
}
.instagram-section__inner {
    position: relative;
    z-index: 1;
    padding-bottom: 48px;
}
.instagram-section__heading {
    margin-bottom: 28px;
}
.instagram-section .instagram-section__title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-dark);
}
/* Pill: fundo primário (#00ADBB) — camada própria para não ser anulada por estilos de <a> */
a.instagram-section__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    min-height: 44px;
    border-radius: 100px;
    background-color: #00adbb;
    text-decoration: none;
    transition: opacity 0.25s ease, filter 0.25s ease;
    box-sizing: border-box;
}
a.instagram-section__pill:hover {
    opacity: 0.92;
    filter: brightness(1.02);
}
.instagram-section__pill-label {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 3px;
}
a.instagram-section__pill:hover .instagram-section__pill-label {
    color: var(--color-white);
}
.instagram-section__carousel {
    margin-top: 8px;
}
.instagram-feed__link {
    display: block;
}
.instagram-feed__img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.instagram-feed__link:hover .instagram-feed__img {
    transform: scale(1.02);
}
.instagram-section .swiper-button-prev,
.instagram-section .swiper-button-next {
    width: 36px;
    height: 36px;
    top: 50%;
    margin-top: -18px;
    z-index: 10;
}
.instagram-section .swiper-button-prev {
    left: 0;
}
.instagram-section .swiper-button-next {
    right: 0;
}
.instagram-section .instagram-feed-pagination {
    position: relative;
    margin-top: 28px;
    text-align: center;
}
.instagram-section .instagram-feed-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: transparent;
    border: 1px solid var(--color-tertiary);
    opacity: 1;
}
.instagram-section .instagram-feed-pagination .swiper-pagination-bullet-active {
    background: var(--color-tertiary);
}

/*=== Footer (Figma node 137:4445) ===*/
.site-footer {
    background: linear-gradient(180deg, #dff6f9 47.6%, var(--color-white) 100%);
}
.site-footer__main {
    padding: 65px 0 80px;
}
.site-footer__logo-link {
    display: inline-block;
    line-height: 0;
    margin-bottom: 40px;
}
.site-footer__logo {
    width: 103px;
    height: auto;
}
.site-footer__social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}
.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    transition: color 0.2s ease;
}
.site-footer__social-link:hover {
    color: var(--color-primary);
}
.site-footer__social-link svg {
    width: 21px;
    height: 21px;
}
.site-footer__link-list a {
    display: block;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    color: var(--color-dark);
    transition: color 0.2s ease;
}
.site-footer__link-list a:hover {
    color: var(--color-primary);
}
.site-footer__heading {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 30px;
    color: var(--color-black);
    line-height: normal;
    margin-bottom: 8px;
}
.site-footer__lead {
    font-size: 10px;
    color: var(--color-black);
    margin-bottom: 38px;
    max-width: 300px;
}
.site-footer__label {
    display: block;
    font-family: var(--font-gotham);
    font-weight: 700;
    font-size: 10px;
    color: var(--color-black);
    margin-bottom: 8px;
}
.site-footer__field-group {
    display: flex;
    gap: 8px;
}
.site-footer__input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--color-tertiary);
    background: transparent;
    padding: 0 19px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 12px;
    color: var(--color-tertiary);
    height: 50px;
}
.site-footer__input::placeholder {
    color: var(--color-tertiary);
}
.site-footer__input:focus-visible,
.site-footer__submit:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.site-footer__submit {
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.site-footer__disclaimer {
    font-size: 10px;
    color: var(--color-black);
    margin-top: 14px;
    max-width: 360px;
}
.site-footer__bar {
    background: var(--color-primary);
}
.site-footer__copyright {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 12px;
    color: var(--color-white);
    text-align: center;
    line-height: 42px;
    margin: 0;
}

/*=== Breadcrumb Bar ===*/
.breadcrumb-bar {
    padding: 18px 0;
    background: var(--color-white);
}
.breadcrumb-bar__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-family: var(--font-gotham);
    font-size: 12px;
    line-height: normal;
}
.breadcrumb-bar__list li a {
    color: #939598;
    font-weight: 400;
}
.breadcrumb-bar__list li a:hover {
    color: var(--color-primary);
}
.breadcrumb-bar__list li + li::before {
    content: "»";
    margin: 0 6px;
    color: #939598;
    font-weight: 325;
}
.breadcrumb-bar__current {
    font-weight: 700;
    color: var(--color-black);
}

/*=== Product Detail ===*/
.product-detail {
    padding: 24px 0 0px;
    background: var(--color-white);
}
.product-detail__gallery {
    max-width: 486px;
    margin: 0 auto;
}
.product-detail__main-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--color-white);
}
.product-detail__main-img .swiper,
.product-detail__main-img .swiper-slide {
    height: 100%;
}
.product-detail__main-img .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-detail__zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--color-dark);
    z-index: 2;
    transition: color 0.2s ease;
}
.product-detail__zoom:hover {
    color: var(--color-primary);
}
.product-detail__zoom:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.product-detail__img {
    max-height: 92%;
    width: auto;
    max-width: 100%;
}
.product-gallery-thumbs {
    margin-top: 16px;
}
.product-gallery-thumbs .swiper-slide {
    width: 105px;
    height: 105px;
    background: var(--color-white);
    border: 2px solid transparent;
    cursor: pointer;
    padding: 4px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}
.product-gallery-thumbs .swiper-slide-thumb-active,
.product-gallery-thumbs .swiper-slide:hover {
    border-color: var(--color-primary);
}
.product-gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info (right column) */
.product-detail__info .category-tag {
    padding: 4px 24px;
    margin-bottom: 16px;
}
.product-detail__title {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 30px;
    color: var(--color-black);
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 24px;
}
.product-detail__badges {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}
.product-detail__badges img {
    height: 62px;
    width: auto;
}
.product-detail__desc {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-dark);
    max-width: 510px;
    margin-bottom: 24px;
}
.product-detail__volume {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-black);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.product-detail__cta {
    background: var(--color-primary);
    width: 180px;
    margin-bottom: 32px;
}
.product-detail__cta:hover {
    background: var(--color-tertiary);
}

/* Product Accordion */
.product-detail__accordion {
    max-width: 510px;
}
.product-detail__accordion-item {
    border-top: 1px solid var(--color-dark);
}
.product-detail__accordion-item:last-child {
    border-bottom: 1px solid var(--color-dark);
}
.product-detail__accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 18px;
    color: var(--color-dark);
    text-align: left;
}
.product-detail__accordion-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}
.product-detail__accordion-icon::before {
    content: "+";
    font-family: var(--font-gotham);
    font-weight: 300;
    font-size: 26px;
    line-height: 1;
    color: var(--color-dark);
}
.product-detail__accordion-item.is-open .product-detail__accordion-icon::before {
    content: "–";
}
.product-detail__accordion-body {
    display: none;
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-dark);
    max-width: 510px;
}

/*=== Benefits Section (página de produto) ===*/
.benefits-section {
    padding: 40px 0 56px;
    background: var(--color-white);
}
.benefits-section__title {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 40px;
}
.benefits-section__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.benefits-section__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.benefits-section__number {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 42px;
    line-height: 1;
    color: var(--color-primary);
    flex-shrink: 0;
    min-width: 62px;
}
.benefits-section__subtitle {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: var(--color-dark);
    margin-bottom: 10px;
}
.benefits-section__text {
    font-size: 14px;
    line-height: 1.45;
    color: var(--color-dark);
    max-width: 463px;
}
.benefits-section__img {
    width: 100%;
    max-width: 565px;
    height: auto;
}

/*=== FAQ Section ===*/
.faq-section {
    padding: 48px 0 56px;
    background: var(--color-white);
}
.faq-section .title {
    margin-bottom: 24px;
}
.faq-accordion__item {
    border-top: 1px solid var(--color-primary);
}
.faq-accordion__item:last-child {
    border-bottom: 1px solid var(--color-primary);
}
.faq-accordion__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 18px;
    color: var(--color-dark);
    text-align: left;
    gap: 16px;
}
.faq-accordion__toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}
.faq-accordion__icon::before {
    content: "+";
    font-family: var(--font-gotham);
    font-weight: 300;
    font-size: 26px;
    line-height: 1;
    color: var(--color-primary);
}
.faq-accordion__item.is-open .faq-accordion__icon::before {
    content: "–";
}
.faq-accordion__body {
    display: none;
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-dark);
}

/*=== FAQ Page ===*/
.faq-page__nav {
    padding: 32px 0 0;
    background: var(--color-white);
}
.faq-page__nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.faq-page__nav-link {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: var(--color-primary);
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.faq-page__nav-link:hover,
.faq-page__nav-link:focus-visible,
.faq-page__nav-link.is-active {
    opacity: 0.75;
    text-decoration: underline;
    outline: none;
}
.faq-page__content {
    padding: 32px 0 80px;
    background: var(--color-white);
}
.faq-page__section {
    scroll-margin-top: 100px;
    margin-bottom: 48px;
}
.faq-page__section:last-child {
    margin-bottom: 0;
}
.faq-page__section-title {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 24px;
    line-height: normal;
    color: var(--color-dark);
    text-transform: uppercase;
    margin-bottom: 16px;
}

/*=== Blog Page — Figma node 397:6000 ===*/
.banner-page--blog {
    min-height: 350px;
    background: var(--color-primary);
}
.banner-page--blog .container {
    min-height: 350px;
}
.banner-page--blog .banner-page__img {
    max-width: min(674px, 55vw);
    max-height: calc(100% + 40px);
}
.blog-page__categories {
    padding: 32px 0 0;
    background: var(--color-white);
}
.blog-page__categories-title,
.blog-page__posts-title {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: var(--color-dark);
    text-transform: uppercase;
    margin-bottom: 24px;
}
.blog-page__category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-page__category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 24px;
    border: 1px solid var(--color-primary);
    background: transparent;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: var(--color-tertiary);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-page__category-btn:hover,
.blog-page__category-btn:focus-visible {
    background-color: var(--color-light);
    outline: none;
}
.blog-page__category-btn.is-active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}
.blog-page__category-select-wrap {
    display: none;
    position: relative;
}
.blog-page__category-select {
    width: 100%;
    min-height: 40px;
    padding: 10px 40px 10px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 0;
    background-color: var(--color-white);
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: var(--color-tertiary);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='7' viewBox='0 0 13 7' fill='none'%3E%3Cpath d='M11.5179 0.475775L6.02051 5.47577L0.523136 0.475775' stroke='%23005F6B' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px auto;
    cursor: pointer;
}
.blog-page__category-select:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.blog-page__posts {
    padding: 32px 0 80px;
    background: var(--color-white);
}
.blog-page .blog-tile__accent {
    background: var(--color-primary);
}
.blog-page .blog-tile__heading {
    font-weight: 500;
}
.blog-page__empty {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-dark);
    margin: 0;
}
.blog-page__pagination.products-pagination {
    margin-top: 48px;
}
.blog-page__pagination .products-pagination__link.is-active {
    background-color: var(--color-tertiary);
    color: var(--color-light);
}
.blog-page__pagination .products-pagination__link:not(.is-active):not(.products-pagination__prev):not(.products-pagination__next) {
    border: 1px solid #105e69;
    color: var(--color-tertiary);
}
.blog-page__pagination .products-pagination__link:not(.is-active):hover {
    background-color: var(--color-light);
    color: var(--color-tertiary);
}

/*=== Single Post — Figma node 402:7556 ===*/
.post-single .breadcrumb-bar {
    padding: 40px 0 8px;
}
.post-single .breadcrumb-bar__list {
    justify-content: center;
}
.post-single__hero {
    padding: 8px 0 40px;
    background: var(--color-white);
}
.post-single__title {
    max-width: 898px;
    margin: 0 auto 32px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 32px;
    line-height: normal;
    color: var(--color-dark);
    text-align: center;
}
.post-single__media {
    margin: 0;
    line-height: 0;
}
.post-single__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1200 / 676;
}
.post-single__body {
    padding: 0 0 64px;
    background: var(--color-white);
}
.post-single__layout {
    align-items: stretch;
}
.post-single__sidebar {
    position: relative;
    padding-right: 50px;
    align-self: stretch;
}
/* .post-single__sidebar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    min-height: 280px;
    background: #d9d9d9;
} */
.post-single__jump {
    position: sticky;
    top: 89px;
    max-height: calc(100vh - 89px);
    overflow-y: auto;
    padding-left: 20px;
    border-left: 1px solid #d9d9d9;
}
.post-single__jump-title {
    margin: 0 0 16px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: var(--color-primary);
    text-transform: uppercase;
}
.post-single__jump-select-wrap {
    display: none;
}
.post-single__jump-select {
    width: 100%;
    min-height: 40px;
    padding: 10px 40px 10px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 0;
    background-color: var(--color-white);
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: var(--color-tertiary);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='7' viewBox='0 0 13 7' fill='none'%3E%3Cpath d='M11.5179 0.475775L6.02051 5.47577L0.523136 0.475775' stroke='%23005F6B' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px auto;
    cursor: pointer;
}
.post-single__jump-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.post-single__jump-list li + li {
    margin-top: 12px;
}
.post-single__jump-link {
    display: block;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    color: #2d2929;
    text-decoration: none;
    transition: color 0.2s ease;
}
.post-single__jump-link:hover,
.post-single__jump-link:focus-visible,
.post-single__jump-link.is-active {
    color: var(--color-primary);
    outline: none;
}
@media (max-width: 991.98px) {
    .post-single__sidebar {
        display: none;
    }
}
.post-single__prose {
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: var(--color-dark);
}
.post-single__prose > p:first-child {
    margin-top: 0;
}
.post-single__prose p {
    margin: 0 0 1.5em;
}
.post-single__prose p.post-single-section__compare-title {
    margin-bottom: 0;
}
.post-single__prose h2 {
    margin: 0 0 1em;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 24px;
    line-height: normal;
    color: var(--color-dark);
    scroll-margin-top: 100px;
}
.post-single__prose h2:not(:first-child) {
    margin-top: 2em;
}
.post-single__prose a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.post-single__prose a:hover {
    color: var(--color-tertiary);
}
.post-single__prose img {
    width: 100%;
    height: auto;
    display: block;
}
.post-single__prose ul,
.post-single__prose .wp-block-list {
    margin: 0 0 1.5em;
    padding-left: 27px;
    list-style-type: disc;
    list-style-position: outside;
}
.post-single__prose ul li,
.post-single__prose .wp-block-list li {
    margin: 0 0 24px;
    padding-left: 0;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: var(--color-dark);
}
.post-single__prose ul li:last-child,
.post-single__prose .wp-block-list li:last-child {
    margin-bottom: 0;
}
.post-single__prose ul li::marker,
.post-single__prose .wp-block-list li::marker {
    color: var(--color-dark);
    font-size: 14px;
}
.post-single__prose ul li strong,
.post-single__prose ul li b,
.post-single__prose .wp-block-list li strong,
.post-single__prose .wp-block-list li b {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    color: var(--color-dark);
}
.post-single__prose ul li strong + br,
.post-single__prose ul li b + br,
.post-single__prose .wp-block-list li strong + br,
.post-single__prose .wp-block-list li b + br {
    display: none;
}
.post-single__prose ul li p,
.post-single__prose .wp-block-list li p {
    margin: 8px 0 0;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: var(--color-dark);
}
.post-single__prose ul li p:first-child,
.post-single__prose .wp-block-list li p:first-child {
    margin-top: 0;
}
.post-single__prose ul li > p:last-child,
.post-single__prose .wp-block-list li > p:last-child {
    margin-bottom: 0;
}
.post-single__prose ol {
    margin: 0 0 1.5em;
    padding-left: 24px;
}
.post-single__prose ol li {
    margin-bottom: 24px;
}
.post-single__prose blockquote,
.post-single__prose .wp-block-quote {
    position: relative;
    margin: 2em 0;
    padding: 24px 24px 24px 20px;
    background: #f9f9f9;
    border: none;
    border-left: 4px solid var(--color-primary);
}
.post-single__prose blockquote p {
    margin: 0 0 12px;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: var(--color-black);
}
.post-single__prose blockquote p:empty,
.post-single__prose blockquote p:has(> br:only-child) {
    display: none;
}
.post-single__prose blockquote cite {
    display: block;
    margin: 0;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    font-style: normal;
    color: var(--color-dark);
}
.post-single__prose blockquote cite strong {
    font-weight: 700;
}

/*=== Single Post — seções do conteúdo (Figma TIPO 4 — node 419:6336) ===*/
.post-single-section {
    margin: 0;
}
.post-single-section--image {
    margin: 2em 0;
    line-height: 0;
}
.post-single-section__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 854 / 480;
}
.post-single-section--products,
.post-single__inline-products.products-carousel-section {
    margin: 4em 0 2em;
    padding: 0;
}
.post-single__inline-products .post-single__inline-products-scrollbar {
    width: 100%;
    margin-left: 0;
    flex: 0 0 100%;
    max-width: 100%;
}
.post-single-section__compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.post-single-section__compare-col {
    display: contents;
}
.post-single-section__compare-col:nth-child(1) > .post-single-section__compare-head {
    grid-row: 1;
    grid-column: 1;
}
.post-single-section__compare-col:nth-child(1) > .post-single-section__compare-media {
    grid-row: 2;
    grid-column: 1;
}
.post-single-section__compare-col:nth-child(1) > .post-single-section__compare-body {
    grid-row: 3;
    grid-column: 1;
}
.post-single-section__compare-col:nth-child(2) > .post-single-section__compare-head {
    grid-row: 1;
    grid-column: 2;
}
.post-single-section__compare-col:nth-child(2) > .post-single-section__compare-media {
    grid-row: 2;
    grid-column: 2;
}
.post-single-section__compare-col:nth-child(2) > .post-single-section__compare-body {
    grid-row: 3;
    grid-column: 2;
}
.post-single-section__compare-head {
    display: flex;
    align-items: center;
    min-height: 73px;
    padding: 24px 28px;
}
.post-single-section__compare-col--primary .post-single-section__compare-head {
    background: var(--color-primary);
}
.post-single-section__compare-col--secondary .post-single-section__compare-head {
    background: #105e69;
}
.post-single-section__compare-title {
    margin: 0;
    font-family: var(--font-avenir);
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    color: #f9f9f9;
}
.post-single-section__compare-media {
    margin: 0;
    line-height: 0;
    aspect-ratio: 600 / 129;
    overflow: hidden;
    background: var(--color-white);
}
.post-single-section__compare-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.post-single-section__compare-media--focus-left .post-single-section__compare-img {
    object-position: 18% center;
}
.post-single-section__compare-media--focus-right .post-single-section__compare-img {
    object-position: 82% center;
}
.post-single-section__compare-media--focus-center .post-single-section__compare-img {
    object-position: center center;
}
.post-single-section__compare-body {
    padding: 27px 28px;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: var(--color-dark);
}
.post-single-section__compare-col--primary .post-single-section__compare-body {
    background: #f3f3f3;
}
.post-single-section__compare-col--secondary .post-single-section__compare-body {
    background: #f9f9f9;
}
.post-single-section__compare-body p {
    margin: 0;
}
.post-single-section__compare-body p + p {
    margin-top: 1em;
}
.post-single-section--compare {
    margin: 2em 0;
}

/*=== Single Post — destaque imagem + lista (Figma TIPO 6 — node 419:6349) ===*/
.post-single-section--destaque {
    margin: 2em 0;
}
.post-single-section__destaque-grid {
    display: grid;
    grid-template-columns: minmax(0, 384fr) minmax(0, 816fr);
    min-height: 272px;
}
.post-single-section__destaque-media {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 28px 24px;
    background: #f9f9f9;
    line-height: 0;
}
.post-single-section__destaque-img {
    width: 100%;
    max-width: 197px;
    height: auto;
    max-height: 206px;
    display: block;
    object-fit: contain;
}
.post-single-section__destaque-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 29px 36px;
    background: #f3f3f3;
}
.post-single-section__destaque-text {
    margin: 0 0 23px;
    font-family: var(--font-avenir);
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: var(--color-dark);
}
.post-single-section__destaque-list {
    margin: 0;
    padding-left: 24px;
    list-style-type: disc;
    list-style-position: outside;
}
.post-single-section__destaque-list li {
    margin: 0 0 9px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    color: var(--color-dark);
}
.post-single-section__destaque-list li:last-child {
    margin-bottom: 0;
}
.post-single-section__destaque-list li::marker {
    color: var(--color-dark);
    font-size: 14px;
}

/*=== Single Post — imagem duas colunas (Figma node 419:6350) ===*/
.post-single-section--images-columns {
    margin: 2em 0;
}
.post-single-section__images-columns-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}
.post-single-section__images-columns-item {
    margin: 0;
    line-height: 0;
    aspect-ratio: 586 / 368;
    overflow: hidden;
    background: var(--color-white);
}
.post-single-section__images-columns-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.post-single-section__images-columns-item--focus-center .post-single-section__images-columns-img {
    object-position: center center;
}
.post-single-section__images-columns-item--focus-left .post-single-section__images-columns-img {
    object-position: left center;
}
.post-single-section__images-columns-item--focus-right .post-single-section__images-columns-img {
    object-position: right center;
}

.post-single__related.products-carousel-section {
    padding-bottom: 64px;
}

/* Video Section */
.video-section-about {
    padding: 16%;
    overflow: hidden;
    position: relative;
}
.video-section-about video {
    --br-media-width: 100%;
    --br-media-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

/*=== Página categorias — filtros ===*/
.products-category {
    padding: 85px 0 93px;
    background: var(--color-white);
}
.products-category .grid {
    display: grid;
    gap: 24px;
    align-items: start;
}
.products-category .grid-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 90px;
    column-gap: 24px;
}
.products-category .text {
    margin: 0 auto 50px;
    max-width: 720px;
}
.products-category .text p {
    margin-bottom: 24px;
}
.filters {
    max-width: 280px;
}
.products-filters-toggle,
.filters-mobile-backdrop,
.filters__mobile-top,
.filters__mobile-actions {
    display: none;
}
.products-filters-toggle {
    border: 1px solid var(--color-primary);
    background: var(--color-white);
    color: var(--color-dark);
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 0 16px;
    margin: 0 0 20px;
}
.products-filters-toggle__icon {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}
.products-filters-toggle__icon span {
    display: block;
    width: 14px;
    height: 2px;
    background: var(--color-primary);
}
.filters__mobile-title {
    margin: 0;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-black);
}
.filters__mobile-close {
    border: 0;
    background: transparent;
    padding: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.filters__mobile-close img {
    width: 20px;
    height: 20px;
    display: block;
}
/* ─── DESATIVADO 2026-05: botão "Aplicar" mobile (filtros AJAX) ───
 * Para reativar: descomentar este bloco + a `.filters__mobile-actions`
 * em @media (max-width: 991px) mais abaixo + restaurar o markup
 * no `template-parts/sidebar-filters-products.php`. */
/*
.filters__mobile-apply {
    width: 100%;
    height: 48px;
    border: 0;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-gotham);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
*/
/* ─── FIM DESATIVADO ─── */
.filters__intro {
    margin: 0 0 18px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.filters__rule {
    margin: 0 0 25px;
    border: none;
    border-top: 1px solid var(--color-primary);
    opacity: 1;
}
.filters__group {
    margin-bottom: 0;
}
.filters__group-heading {
    margin: 0 0 16px;
    padding-left: 16px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}
.filters__list {
    margin: 0 0 25px;
    padding: 0 0 0 16px;
    list-style: none;
}
.filters__list li + li {
    margin-top: 14px;
}
.filters__link {
    display: inline-block;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}
.filters__link:hover {
    color: var(--color-primary);
}
.filters__link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ─── DESATIVADO 2026-05: header com botão "Limpar" (filtros AJAX) ───
 * Para reativar: descomentar este bloco e restaurar o link
 * `<a id="filters-clear">` em `template-parts/sidebar-filters-products.php`. */
/*
.filters__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.filters__clear {
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 12px;
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.filters__clear:hover {
    color: var(--color-primary);
}
.filters__clear.is-hidden {
    visibility: hidden;
    pointer-events: none;
}
*/
/* ─── FIM DESATIVADO ─── */

/* Filters: estado ativo */
.filters__link.is-active {
    font-weight: 700;
    color: var(--color-primary);
}
/* .filters__link.is-active:before {
    content: 'X';
    display: inline-block;
} */

/* Filters: estado desabilitado (smart-disable) */
.filters__link.is-disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

/* category-boxes */
.category-boxes {
    margin-top: 50px;
}
.category-boxes .box1 {
    background: #F1F1F1;
    padding: 36px 24px;
}
.category-boxes .box2 {
    background: #F1F1F1;
    padding: 36px 24px;
    margin-top: 30px;
}
.category-boxes .box3 {
    background: #F1F1F1;
    padding: 36px 24px;
    margin-top: 30px;
}


/* Grid products wrapper */
.grid-products-wrapper {
    min-width: 0;
}
.text-products-cat-intro {
    text-align: center;
    margin-bottom: 20px;
}
.text-products-cat-intro p {
    margin-bottom: 20px;
}

/* Contador de resultados */
.products-count {
    font-family: var(--font-gotham);
    font-weight: 400;
    font-size: 12px;
    color: #939598;
    margin: 0 0 24px;
}

/* Mensagem de vazio */
.products-empty {
    grid-column: 1 / -1;
    text-align: center;
    font-family: var(--font-gotham);
    font-size: 14px;
    color: #939598;
    padding: 60px 20px;
}

/* ─── Skeleton Loader ────────────────────────── */
/* ─── DESATIVADO 2026-05: skeleton loader (filtros AJAX) ───
 * Para reativar: descomentar este bloco e restaurar o
 * <template id="skeleton-template"> em produtos.php. */
/*
.skeleton-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.skeleton-card__tag {
    width: 80px;
    height: 14px;
    border-radius: 2px;
}
.skeleton-card__img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
}
.skeleton-card__rating {
    width: 120px;
    height: 14px;
    border-radius: 2px;
}
.skeleton-card__title {
    width: 85%;
    height: 18px;
    border-radius: 2px;
}
.skeleton-card__desc {
    width: 100%;
    height: 36px;
    border-radius: 2px;
}
.skeleton-card__link {
    width: 72px;
    height: 14px;
    border-radius: 2px;
}
.skeleton-shimmer {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.grid-products.is-loading {
    opacity: 0.6;
    transition: opacity 0.15s ease;
}
*/
/* ─── FIM DESATIVADO ─── */

/* ─── Paginação Numérica ─────────────────────── */
.products-pagination {
    margin-top: 48px;
}
.products-pagination__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.products-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: 4px;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 13px;
    color: var(--color-dark);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}
.products-pagination__link:hover {
    background-color: #f0f0f0;
    color: var(--color-primary);
}
.products-pagination__link.is-active {
    background-color: var(--color-primary);
    color: var(--color-white);
    pointer-events: none;
}
.products-pagination__link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.products-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    font-family: var(--font-gotham);
    font-size: 13px;
    color: #939598;
}
.products-pagination__prev,
.products-pagination__next {
    color: var(--color-dark);
}
.products-pagination__prev:hover,
.products-pagination__next:hover {
    background-color: #f0f0f0;
    color: var(--color-primary);
}

/*=== Bloco SEO / descrição — categorias (Figma 395:735) ===*/
.description-products-category {
    padding: 80px 0 0;
    background: var(--color-white);
}
.description-products-category__grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}
.description-products-category__panel--lead {
    grid-column: 1 / -1;
}
.description-products-category__panel {
    background: #f1f1f1;
    padding: 36px 40px;
    min-height: 100%;
    box-sizing: border-box;
}
.description-products-category__text {
    font-family: var(--font-avenir);
    font-size: 12px;
    line-height: normal;
    color: var(--color-black);
}
.description-products-category__text strong {
    font-weight: 700;
}
.description-products-category__text p {
    margin: 0;
}
.description-products-category__text p + p {
    margin-top: 18px;
}
.description-products-category__panel--lead .description-products-category__text {
    margin-left: auto;
    margin-right: auto;
}
.description-products-category__panel--col .description-products-category__text {
    max-width: 337px;
}

/*=== Onde comprar — grade de logos (Figma 253:3795) ===*/
.where-to-buy {
    padding: 48px 0 80px;
    background: var(--color-white);
}
.where-to-buy__grid {
    display: grid;
    grid-template-columns: repeat(2, 180px);
    justify-content: center;
    gap: 22px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.where-to-buy__item {
    width: 180px;
    height: 180px;
    margin: 0;
    padding: 0;
    background: var(--color-white);
    box-sizing: border-box;
}
.where-to-buy__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.where-to-buy__link:hover {
    opacity: 0.85;
}
.where-to-buy__link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.where-to-buy__link img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.where-to-buy__item--row3:nth-child(11) {
    grid-column: 2;
}
.where-to-buy__item--row3:nth-child(12) {
    grid-column: 3;
}
.where-to-buy__item--row3:nth-child(13) {
    grid-column: 4;
}

/* Responsive  */
@media (min-width: 48rem) {
    .video-section {
        height: auto;
    }
}

@media (min-width: 992px) {
    .best-seller-section--reverse > .container > .row {
        flex-direction: row-reverse;
    }
    .best-seller-section--reverse .best-seller-media {
        justify-content: flex-start;
    }
    .products-category .grid {
        grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
        column-gap: 3rem;
    }
    .description-products-category__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 991px) {
    body.products-filters-open {
        overflow: hidden;
    }
    .filters {
        max-width: none;
    }
    .products-filters-toggle {
        display: inline-flex;
    }
    .products-category .filters {
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 100%);
        height: 100dvh;
        background: var(--color-white);
        z-index: 2100;
        padding: 20px 20px 30px;
        border-left: 1px solid #e2e2e2;
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
    }
    .products-category .filters.is-open {
        transform: translateX(0);
        visibility: visible;
    }
    .filters__mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin: 0 0 18px;
    }
    .filters__header {
        margin-top: 0;
    }
    .filters-mobile-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 2000;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    body.products-filters-open .filters-mobile-backdrop {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    /* ─── DESATIVADO 2026-05: container sticky do botão "Aplicar" ─── */
    /*
    .filters__mobile-actions {
        display: block;
        position: sticky;
        bottom: -20px;
        margin-top: 24px;
        padding-top: 12px;
        background: var(--color-white);
    }
    */
    /* ─── FIM DESATIVADO ─── */
    .products-category .grid-products {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 48px;
    }
    .where-to-buy__grid {
        grid-template-columns: repeat(3, minmax(0, 160px));
        gap: 16px;
    }
    .where-to-buy__item {
        width: 100%;
        max-width: 180px;
        height: 160px;
        justify-self: center;
    }
    .where-to-buy__item--row3:nth-child(11),
    .where-to-buy__item--row3:nth-child(12),
    .where-to-buy__item--row3:nth-child(13) {
        grid-column: auto;
    }
    .great-for-skincare__circles {
        flex-wrap: wrap;
        gap: 28px 20px;
        justify-content: center;
    }
    .great-for-skincare__circle {
        width: min(280px, 88vw);
    }
    .great-for-skincare__circle--center,
    .great-for-skincare__circle--right {
        margin-left: 0;
    }
    .optimal-skincare__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 20px;
    }
    .optimal-skincare__step {
        max-width: 220px;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {

}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        padding: 0 50px;
    }
}

@media (max-width: 1500px) {
    .mega-list a {
        font-size: 14px;
        gap: 12px;
    }
}
@media (max-width: 1360px) {

}
@media (max-width: 1199px) {
    .banner-home h1 {
        max-width: 310px;
    }
    .banner-home h1 br {
        display: none;
    }
    .banner-home h1 span {
        display: table;
    }
    .banner-home h1 span::before {
        height: 100%;
    }

}
@media (max-width: 991px) {
    .products-carousel-section .section-title-area .desc, .best-seller-section .title, .best-seller-desc, .best-seller-section--profundo .best-seller-desc {
        max-width: none;
    }
    .products-carousel-section .section-title-area {
        margin-bottom: 50px;
    }
    .best-seller-section .title br, .section-title-area .title br {
        display: none;
    }
    .best-seller-section .row, .best-seller-section--reverse > .container > .row {
        flex-direction: column-reverse;
    }
    .best-seller-media {
        justify-content: center;
        margin-bottom: 50px;
    }
    .contact-form__figure {
        margin: 0 auto;
    }
    .header-search-overlay__close {
        top: 10px;
    }
}

@media (max-width: 767px) {
    .title, .section-title-area .title {
        font-size: 30px;
    }
    .link-saiba-mais {
        font-size: 16px;
    }
    .breadcrumb-bar__list {
        justify-content: center;
    }
    .product-card .link-saiba-mais {
        font-size: 12px;
    }
    .banner-page {
        min-height: 0;
        background: var(--color-primary) !important;
    }
    .banner-home {
        height: auto;
    }
    .banner-home .img-banner {
        position: relative !important;
        max-width: 100%;
        margin-top: -16px;
    }
    .banner-home .row.h-100.align-items-center {
        align-items: flex-start !important;
        padding-top: 29px;
        height: auto !important;
    }
    .banner-home h1 {
        margin-bottom: 20px;
    }
    .banner-home h1, .banner-home h1 strong {
        max-width: none;
        font-size: 28px;
    }
    .banner-home .container {
        height: auto !important;
    }
    .banner-home .container, .container {
        padding-left: 22px;
        padding-right: 22px;
    }
    .banner-home p {
        font-size: 12px;
    }
    .banner-page .container {
        min-height: 0;
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .banner-page .section-title-area .title {
        font-size: 25px;
    }
    .banner-page--blog .banner-page__img {
        display: none;
    }
    .banner-page--blog,
    .banner-page--blog .container {
        min-height: 0;
    }
    .blog-page__category-list {
        display: none;
    }
    .blog-page__category-select-wrap {
        display: block;
    }
    .blog-page__categories-title {
        margin-bottom: 16px;
    }
    .post-single__title {
        font-size: 25px;
        margin-bottom: 24px;
    }
    .post-single .breadcrumb-bar {
        padding: 32px 0 8px;
    }
    .post-single__hero {
        padding-top: 8px;
        padding-bottom: 32px;
    }
    .post-single__prose blockquote,
    .post-single__prose .wp-block-quote {
        padding: 20px 16px 20px 16px;
    }
    .post-single__prose ul li strong,
    .post-single__prose ul li b,
    .post-single__prose .wp-block-list li strong,
    .post-single__prose .wp-block-list li b {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .post-single__prose ul li,
    .post-single__prose .wp-block-list li {
        margin-bottom: 20px;
    }
    .post-single-section__compare-grid {
        grid-template-columns: 1fr;
    }
    .post-single-section__compare-col:nth-child(1) > .post-single-section__compare-head,
    .post-single-section__compare-col:nth-child(1) > .post-single-section__compare-media,
    .post-single-section__compare-col:nth-child(1) > .post-single-section__compare-body,
    .post-single-section__compare-col:nth-child(2) > .post-single-section__compare-head,
    .post-single-section__compare-col:nth-child(2) > .post-single-section__compare-media,
    .post-single-section__compare-col:nth-child(2) > .post-single-section__compare-body {
        grid-row: auto;
        grid-column: auto;
    }
    .post-single-section__compare-head {
        min-height: 0;
        padding: 20px 16px;
    }
    .post-single-section__compare-body {
        padding: 20px 16px;
    }
    .post-single-section__destaque-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .post-single-section__destaque-media {
        padding: 24px 16px;
    }
    .post-single-section__destaque-content {
        padding: 24px 16px;
    }
    .post-single-section__destaque-list li {
        font-size: 16px;
    }
    .post-single-section__images-columns-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .text-marquee .swiper-slide span {
        font-size: 12px;
    }
    .water-section h2 {
        font-size: 30px;
    }
    .water-section h2 br {
        display: none;
    }
    .description-products-category {
        padding: 32px 0 56px;
    }
    .description-products-category__panel {
        padding: 28px 20px;
    }
    .description-products-category__panel--lead .description-products-category__text,
    .description-products-category__panel--col .description-products-category__text {
        max-width: none;
    }
    .where-to-buy {
        padding: 32px 0 56px;
    }
    .where-to-buy__grid {
        grid-template-columns: 1;
        gap: 12px;
    }
    .where-to-buy__item {
        max-width: none;
        width: 100%;
        height: 140px;
    }
    .banner-where-to-buy {
        padding: 32px 0 56px;
    }
    .banner-where-to-buy__box {
        min-height: 0;
        padding: 28px 20px 0;
        background-position: center top;
        background: var(--color-primary) !important;
    }
    .banner-where-to-buy__title {
        max-width: none;
        font-size: 22px;
    }
    .banner-where-to-buy__content {
        max-width: none;
    }
    .legal-where-to-buy {
        padding: 32px 0 48px;
    }
    .essencial-elements {
        padding: 40px 0 56px;
    }
    .essencial-elements__title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .essencial-elements__intro {
        margin-bottom: 32px;
        font-size: 15px;
    }
    .essencial-elements__caption {
        font-size: 15px;
    }
    .what-are-ceramidas {
        min-height: 0;
        background-size: min(240px, 30vw) auto;
        background-position: right top;
    }
    .what-are-ceramidas .container {
        min-height: 0;
        padding-top: 40px;
        padding-bottom: 48px;
    }
    .what-are-ceramidas__title {
        font-size: 26px;
        max-width: none;
    }
    .what-are-ceramidas__intro {
        max-width: none;
    }
    .great-for-skincare {
        padding: 40px 0 52px;
    }
    .great-for-skincare__title {
        font-size: 22px;
        margin-bottom: 28px;
    }
    .great-for-skincare__text {
        font-size: 15px;
        max-width: 220px;
    }
    .optimal-skincare {
        padding: 40px 0 48px;
    }
    .optimal-skincare__title {
        font-size: 22px;
        margin-bottom: 32px;
    }
    .optimal-skincare__steps {
        grid-template-columns: 1fr;
    }
    .optimal-skincare__step {
        max-width: 280px;
    }
    .optimal-skincare__desc {
        max-width: 260px;
    }
    .contact-form {
        padding: 36px 0 56px;
    }
    .contact-form__title {
        font-size: 28px;
    }
    .contact-form__lead {
        margin-bottom: 32px;
        max-width: none;
    }
    .contact-form__figure {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-form__form {
        max-width: none;
    }
    .products-category .grid-products {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }
    .products-count {
        text-align: center;
    }
    .products-pagination__link {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .text-default {
        padding: 40px 0 56px;
    }
    .text-default__prose {
        font-size: 15px;
    }
    .product-card .product-card__img-stack {
        max-width: 100%;
    }
    .product-card .product-img-wrapper {
        width: 100%;
        height: auto;
    }

    .products-carousel-section .swiper-button-prev, .products-carousel-section .swiper-button-next {
        display: none;
    }
    .site-footer__field-group {
        display: block;
    }
    .site-footer__input {
        width: 100%;
        margin-bottom: 9px;
    }
    .site-footer__submit {
        width: 100%;
    }
    ul#menu-rodape-links-do-site-1 {
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--color-primary);
    }
    .product-detail .product-detail__info {
        margin-top: 50px;
    }
    .product-detail__badges {
        flex-wrap: wrap;
    }
    .product-detail .product-detail__title {
        font-size: 24px;
    }
    .benefits-section .row {
        flex-direction: column-reverse;
    }
    .what-are-ceramidas__inner {
        max-width: 80%;
    }
    .video-section-about {
        padding: 40%;
    }
    .best-seller-section {
        overflow: hidden;
    }
}