* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #101010;
    --black-soft: #191919;
    --white: #ffffff;
    --off-white: #f7f6f2;
    --gray-50: #fafafa;
    --gray-100: #f3f3f3;
    --gray-200: #e7e7e7;
    --gray-300: #d3d3d3;
    --gray-500: #777;
    --gray-600: #646464;
    --green: #1fa855;

    --container: 1280px;
    --radius: 18px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--black);
    background: white;
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}


/* ================================
   TOPBAR
================================ */

.topbar {
    min-height: 35px;
    background: var(--black);
    color: #ddd;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 28px;
    padding: 7px 20px;

    font-size: 12px;
}

.topbar p {
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar span {
    width: 1px;
    height: 12px;
    background: #555;
}


/* ================================
   HEADER
================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 500;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-container {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;

    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 26px;

    line-height: 1;
    letter-spacing: 2px;
}

.logo > span {
    position: absolute;
    top: -5px;

    margin-left: 3px;

    font-size: 7px;
}

.logo small {
    display: block;

    margin-top: 5px;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 5px;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.desktop-menu a {
    position: relative;

    font-size: 14px;
    font-weight: 500;
}

.desktop-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--black);

    transition: width var(--transition);
}

.desktop-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-button,
.icon-button,
.mobile-menu-button {
    position: relative;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    transition: var(--transition);
}

.cart-button:hover,
.icon-button:hover,
.mobile-menu-button:hover {
    background: var(--gray-100);
}

.cart-button span {
    position: absolute;

    top: 1px;
    right: 0;

    min-width: 18px;
    height: 18px;

    padding: 0 5px;

    border-radius: 50px;

    display: grid;
    place-items: center;

    background: var(--black);
    color: white;

    font-size: 9px;
    font-weight: 700;
}

.mobile-menu-button,
.search-mobile-button {
    display: none;
}

.mobile-menu {
    display: none;
}


/* ================================
   HERO
================================ */

.hero {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    background:
        url("https://images.unsplash.com/photo-1511499767150-a48a237f0083?auto=format&fit=crop&w=2000&q=90")
        center 47% / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.76) 0%,
            rgba(0,0,0,.48) 42%,
            rgba(0,0,0,.05) 80%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    color: white;
}

.hero-label,
.eyebrow {
    display: inline-flex;

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.hero-content h1 {
    max-width: 700px;

    font-family: "Manrope", sans-serif;
    font-weight: 500;

    font-size: clamp(44px, 6vw, 78px);

    line-height: 1.03;
    letter-spacing: -4px;
}

.hero-content h1 strong {
    display: block;
    font-weight: 800;
}

.hero-content p {
    max-width: 530px;

    margin-top: 25px;

    font-size: 17px;

    color: rgba(255,255,255,.84);
}

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 36px;
}

.btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 23px;

    border-radius: 50px;

    font-weight: 600;
    font-size: 14px;

    transition: var(--transition);
}

.btn-light {
    background: white;
    color: var(--black);
}

.btn-light:hover {
    background: #ececec;
    transform: translateY(-2px);
}

.btn-outline-light {
    color: white;
    border: 1px solid rgba(255,255,255,.5);
}

.btn-outline-light:hover {
    background: white;
    color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: white;
}

.btn-dark:hover {
    background: #303030;
    transform: translateY(-2px);
}


/* ================================
   QUICK BENEFITS
================================ */

.quick-benefits {
    border-bottom: 1px solid var(--gray-200);
}

.quick-benefits-grid {
    min-height: 94px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.quick-benefits-grid > div {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    padding: 20px;

    border-right: 1px solid var(--gray-200);
}

.quick-benefits-grid > div:first-child {
    border-left: 1px solid var(--gray-200);
}

.quick-benefits-grid i {
    font-size: 19px;
}

.quick-benefits-grid span {
    display: flex;
    flex-direction: column;

    font-size: 11px;

    color: var(--gray-500);
}

.quick-benefits-grid strong {
    color: var(--black);

    font-size: 13px;
}


/* ================================
   TÍTULOS
================================ */

.section-heading {
    display: grid;

    grid-template-columns: 1.15fr .65fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 45px;
}

.section-heading h2,
.center-heading h2,
.about-content h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.12;

    letter-spacing: -2px;
}

.section-heading p {
    max-width: 480px;

    color: var(--gray-600);
}

.center-heading {
    max-width: 650px;

    margin: 0 auto 55px;

    text-align: center;
}

.center-heading p {
    max-width: 550px;

    margin: 15px auto 0;

    color: var(--gray-600);
}


/* ================================
   CATÁLOGO
================================ */

.catalog-toolbar {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}

.search-box {
    width: 350px;
    height: 48px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 0 17px;

    background: var(--gray-100);

    border-radius: 50px;
}

.search-box i {
    color: var(--gray-500);
}

.search-box input {
    width: 100%;

    outline: 0;
    border: 0;

    background: transparent;

    font-size: 13px;
}

.sort-wrapper {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 13px;
}

.sort-wrapper label {
    color: var(--gray-500);
}

.sort-wrapper select {
    outline: 0;

    border: 1px solid var(--gray-200);

    border-radius: 50px;

    background: white;

    padding: 10px 34px 10px 16px;
}

.filters {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    padding: 8px 0 22px;
}

.filter-btn {
    padding: 9px 17px;

    border: 1px solid var(--gray-200);

    border-radius: 50px;

    font-size: 12px;

    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--black);
    color: white;

    border-color: var(--black);
}

.catalog-result-info {
    padding-bottom: 18px;

    color: var(--gray-500);

    font-size: 12px;
}

.catalog-result-info span {
    color: var(--black);

    font-weight: 700;
}

.products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 34px 18px;
}

.product-card {
    position: relative;
    cursor: pointer;
}

.product-image {
    position: relative;

    aspect-ratio: 1 / 1.08;

    overflow: hidden;

    background: #f3f3f1;

    border-radius: 15px;
}

.product-image img {
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.045);
}

.product-badge {
    position: absolute;

    top: 13px;
    left: 13px;

    z-index: 2;

    background: white;

    padding: 6px 10px;

    border-radius: 50px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}

.product-quick-add {
    position: absolute;

    right: 13px;
    bottom: 13px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: white;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

    transform: translateY(10px);

    opacity: 0;

    transition: var(--transition);
}

.product-card:hover .product-quick-add {
    transform: translateY(0);
    opacity: 1;
}

.product-quick-add:hover {
    background: var(--black);
    color: white;
}

.product-info {
    padding: 14px 3px 0;
}

.product-category {
    display: block;

    margin-bottom: 4px;

    color: #999;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.product-title {
    font-family: "Manrope", sans-serif;

    font-size: 15px;
    font-weight: 700;
}

.product-price-row {
    margin-top: 7px;

    display: flex;
    align-items: center;

    gap: 8px;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
}

.product-old-price {
    color: #aaa;

    font-size: 11px;

    text-decoration: line-through;
}

.product-installment {
    display: block;

    margin-top: 2px;

    color: var(--gray-500);

    font-size: 10px;
}

.no-products {
    display: none;

    text-align: center;

    padding: 90px 20px;
}

.no-products.show {
    display: block;
}

.no-products i {
    margin-bottom: 15px;

    font-size: 40px;

    color: #bbb;
}

.no-products p {
    margin-top: 7px;

    color: var(--gray-500);
}


/* ================================
   BANNER
================================ */

.collection-banner {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;

    background:
        url("https://images.unsplash.com/photo-1508296695146-257a814070b4?auto=format&fit=crop&w=1900&q=90")
        center / cover no-repeat;
}

.collection-banner-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.48);
}

.collection-content {
    position: relative;
    z-index: 2;

    color: white;

    text-align: center;
}

.collection-content span {
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.collection-content h2 {
    max-width: 790px;

    margin: 17px auto 15px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 5vw, 63px);

    line-height: 1.08;

    letter-spacing: -3px;
}

.collection-content p {
    margin-bottom: 28px;

    color: rgba(255,255,255,.8);
}


/* ================================
   BENEFÍCIOS
================================ */

.benefits-section {
    background: var(--off-white);
}

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.benefit-card {
    position: relative;

    min-height: 280px;

    padding: 30px;

    background: white;

    border-radius: var(--radius);

    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 17px 45px rgba(0,0,0,.06);
}

.benefit-card > span {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #bbb;

    font-size: 10px;
}

.benefit-card i {
    margin: 30px 0 50px;

    font-size: 26px;
}

.benefit-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 17px;
}

.benefit-card p {
    margin-top: 8px;

    color: var(--gray-600);

    font-size: 13px;
}


/* ================================
   SOBRE
================================ */

.about-grid {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 90px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image > img {
    height: 630px;

    object-fit: cover;

    border-radius: 22px;
}

.about-badge {
    position: absolute;

    right: -25px;
    bottom: 45px;

    width: 155px;
    height: 155px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: white;

    border-radius: 50%;

    box-shadow: 0 15px 50px rgba(0,0,0,.12);
}

.about-badge strong {
    letter-spacing: 3px;
}

.about-badge span {
    font-size: 11px;

    color: var(--gray-500);
}

.about-content {
    max-width: 520px;
}

.about-content h2 {
    margin-bottom: 27px;
}

.about-content p {
    margin-bottom: 17px;

    color: var(--gray-600);
}

.about-content .btn {
    margin-top: 15px;
}


/* ================================
   COMO COMPRAR
================================ */

.how-to-buy {
    background: var(--black);

    color: white;
}

.how-to-buy .eyebrow {
    color: #aaa;
}

.steps {
    display: flex;

    align-items: flex-start;
}

.steps article {
    flex: 1;

    text-align: center;
}

.steps article > span {
    width: 45px;
    height: 45px;

    margin: 0 auto 17px;

    display: grid;
    place-items: center;

    border: 1px solid #505050;

    border-radius: 50%;

    font-size: 11px;
}

.steps h3 {
    margin-bottom: 7px;

    font-size: 17px;
}

.steps p {
    max-width: 200px;

    margin: auto;

    color: #929292;

    font-size: 12px;
}

.step-line {
    flex: .5;

    height: 1px;

    margin-top: 22px;

    background: #373737;
}


/* ================================
   FOOTER
================================ */

.footer {
    padding: 80px 0 30px;

    background: #0e0e0e;

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr .7fr .8fr 1fr;

    gap: 70px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 20px;
}

.footer-grid > div > p {
    max-width: 290px;

    color: #888;

    font-size: 12px;
}

.footer h4 {
    margin-bottom: 17px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.footer-grid div {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.footer-grid a,
.footer-grid span {
    margin: 4px 0;

    color: #999;

    font-size: 12px;

    transition: var(--transition);
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 65px;

    padding-top: 25px;

    border-top: 1px solid #262626;

    color: #666;

    font-size: 10px;
}


/* ================================
   MODAL PRODUTO
================================ */

.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0,0,0,.72);

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    position: relative;

    width: min(1080px, 100%);

    max-height: 92vh;

    overflow-y: auto;

    background: white;

    border-radius: 22px;

    transform: translateY(25px);

    transition: .35s ease;
}

.modal-overlay.active .product-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 20;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: white;

    border-radius: 50%;

    box-shadow: 0 5px 25px rgba(0,0,0,.1);
}

.product-modal-grid {
    display: grid;

    grid-template-columns: 1.08fr .92fr;
}

.modal-gallery {
    padding: 25px;

    background: #f4f3ef;
}

.main-product-image {
    position: relative;

    aspect-ratio: 1/1;

    overflow: hidden;

    border-radius: 15px;
}

.main-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.gallery-arrow {
    position: absolute;

    top: 50%;

    z-index: 5;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: rgba(255,255,255,.9);

    border-radius: 50%;

    transform: translateY(-50%);
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

.thumbnail-list {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 8px;

    margin-top: 10px;
}

.thumbnail-item {
    aspect-ratio: 1/.85;

    overflow: hidden;

    border: 2px solid transparent;

    border-radius: 9px;

    cursor: pointer;
}

.thumbnail-item.active {
    border-color: var(--black);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.modal-info {
    padding: 65px 50px 45px;
}

.modal-category {
    font-size: 10px;

    color: var(--gray-500);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.modal-info h2 {
    margin: 10px 0;

    font-family: "Manrope", sans-serif;

    font-size: 34px;

    line-height: 1.15;
}

.modal-rating {
    display: flex;
    align-items: center;

    gap: 3px;

    margin-bottom: 22px;

    font-size: 10px;
}

.modal-rating i {
    font-size: 9px;
}

.modal-rating span {
    margin-left: 7px;

    color: var(--gray-500);
}

.modal-price-area {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;
}

.modal-price-area .old-price {
    color: #aaa;

    text-decoration: line-through;
}

.modal-price-area strong {
    font-size: 24px;
}

.modal-description {
    padding-bottom: 20px;

    color: var(--gray-600);

    font-size: 14px;
}

.product-features {
    padding: 18px 0;

    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.product-features div {
    margin: 7px 0;

    font-size: 12px;
}

.product-features i {
    margin-right: 7px;

    font-size: 10px;
}

.modal-product-code {
    padding: 17px 0;

    font-size: 11px;

    color: var(--gray-500);
}

.modal-product-code strong {
    color: var(--black);
}

.modal-actions {
    display: flex;

    gap: 10px;

    margin-top: 10px;
}

.quantity-selector {
    min-width: 116px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    border: 1px solid var(--gray-200);

    border-radius: 50px;
}

.quantity-selector button {
    width: 35px;
    height: 35px;

    font-size: 18px;
}

.quantity-selector span {
    font-weight: 600;
}

.modal-add-cart {
    flex: 1;
}

.buy-now-button {
    width: 100%;

    margin-top: 10px;

    padding: 13px;

    font-size: 12px;

    text-decoration: underline;
}


/* ================================
   CARRINHO
================================ */

.cart-overlay {
    position: fixed;

    inset: 0;

    z-index: 1100;

    background: rgba(0,0,0,.55);

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;

    z-index: 1200;

    top: 0;
    right: 0;

    width: min(440px, 100%);
    height: 100%;

    display: flex;
    flex-direction: column;

    background: white;

    transform: translateX(100%);

    transition: transform .4s ease;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    min-height: 95px;

    padding: 20px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--gray-200);
}

.cart-header span {
    font-size: 9px;

    letter-spacing: 2px;

    color: var(--gray-500);
}

.cart-header h2 {
    font-family: "Manrope", sans-serif;

    font-size: 25px;
}

.cart-header button {
    width: 40px;
    height: 40px;
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 7px 25px;
}

.cart-item {
    position: relative;

    display: grid;

    grid-template-columns: 92px 1fr;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid var(--gray-200);
}

.cart-item-image {
    width: 92px;
    height: 105px;

    overflow: hidden;

    border-radius: 10px;

    background: var(--gray-100);
}

.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cart-item-info {
    padding-right: 20px;
}

.cart-item-category {
    font-size: 8px;

    color: #999;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.cart-item-name {
    margin: 2px 0 4px;

    font-size: 13px;
    font-weight: 700;
}

.cart-item-price {
    font-size: 12px;
    font-weight: 600;
}

.cart-item-controls {
    margin-top: 10px;

    display: inline-flex;
    align-items: center;

    border: 1px solid var(--gray-200);

    border-radius: 50px;
}

.cart-item-controls button {
    width: 29px;
    height: 27px;
}

.cart-item-controls span {
    width: 24px;

    text-align: center;

    font-size: 11px;
}

.remove-cart-item {
    position: absolute;

    right: 0;
    top: 17px;

    color: #aaa;
}

.empty-cart {
    flex: 1;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 40px;

    text-align: center;
}

.empty-cart.show {
    display: flex;
}

.empty-cart > i {
    margin-bottom: 20px;

    font-size: 40px;

    color: #ccc;
}

.empty-cart p {
    max-width: 250px;

    margin: 7px 0 22px;

    color: var(--gray-500);

    font-size: 12px;
}

.cart-summary {
    padding: 22px 25px 27px;

    border-top: 1px solid var(--gray-200);
}

.cart-summary > div {
    display: flex;
    justify-content: space-between;

    margin-bottom: 6px;

    font-size: 12px;
}

.cart-summary .cart-total {
    margin-top: 14px;

    padding-top: 14px;

    border-top: 1px solid var(--gray-200);

    font-size: 16px;
}

.shipping-info {
    margin: 10px 0 17px;

    color: var(--gray-500);

    font-size: 10px;
}

.checkout-button {
    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 50px;

    background: var(--green);

    color: white;

    font-weight: 700;
    font-size: 13px;

    transition: var(--transition);
}

.checkout-button:hover {
    filter: brightness(.94);
}

.checkout-button i {
    font-size: 18px;
}

.clear-cart-button {
    width: 100%;

    margin-top: 10px;

    padding: 6px;

    color: #999;

    font-size: 10px;

    text-decoration: underline;
}


/* ================================
   TOAST
================================ */

.toast {
    position: fixed;

    z-index: 1500;

    right: 25px;
    bottom: 25px;

    min-width: 285px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 17px;

    background: var(--black);

    color: white;

    border-radius: 13px;

    box-shadow: 0 15px 45px rgba(0,0,0,.2);

    transform: translateY(120px);

    opacity: 0;

    transition: .4s ease;
}

.toast.show {
    transform: translateY(0);

    opacity: 1;
}

.toast > i {
    color: #56c47e;
}

.toast div {
    display: flex;
    flex-direction: column;
}

.toast strong {
    font-size: 12px;
}

.toast span {
    color: #aaa;

    font-size: 10px;
}


/* ================================
   WHATSAPP FLUTUANTE
================================ */

.floating-whatsapp {
    position: fixed;

    z-index: 450;

    right: 22px;
    bottom: 22px;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    box-shadow: 0 8px 25px rgba(0,0,0,.18);

    font-size: 24px;

    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.07);
}


/* ================================
   PESQUISA MOBILE
================================ */

.mobile-search {
    position: fixed;

    z-index: 900;

    inset: 0;

    display: flex;
    align-items: flex-start;

    padding: 20px;

    background: rgba(255,255,255,.98);

    transform: translateY(-100%);

    transition: .35s ease;
}

.mobile-search.active {
    transform: translateY(0);
}

.mobile-search-box {
    width: 100%;

    display: flex;

    gap: 10px;
}

.mobile-search-box input {
    flex: 1;

    height: 50px;

    padding: 0 18px;

    outline: 0;

    border: 1px solid var(--gray-200);

    border-radius: 50px;
}

.mobile-search-box button {
    width: 50px;
}


/* ================================
   RESPONSIVO
================================ */

@media (max-width: 1100px) {

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 55px;
    }

    .about-image > img {
        height: 560px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-grid > div:last-child {
        display: none;
    }

}


@media (max-width: 850px) {

    .section {
        padding: 80px 0;
    }

    .topbar p:last-child,
    .topbar span {
        display: none;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-button,
    .search-mobile-button {
        display: grid;
    }

    .mobile-menu {
        position: absolute;

        top: 76px;
        left: 0;

        width: 100%;

        padding: 10px 20px 20px;

        background: white;

        border-bottom: 1px solid var(--gray-200);

        flex-direction: column;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        padding: 13px 5px;

        border-bottom: 1px solid #eee;

        font-size: 14px;
    }

    .hero {
        min-height: 620px;

        background-position: 57% center;
    }

    .hero-overlay {
        background: rgba(0,0,0,.56);
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1,
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .quick-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-benefits-grid > div,
    .quick-benefits-grid > div:first-child {
        border: 1px solid var(--gray-200);
        border-top: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 17px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-quick-add {
        opacity: 1;

        transform: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        max-width: 100%;
    }

    .about-badge {
        right: 20px;
    }

    .steps {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 45px 20px;
    }

    .step-line {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-info {
        padding: 35px 30px;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 68px 0;
    }

    .header-container {
        height: 68px;
    }

    .logo {
        font-size: 21px;
    }

    .header-actions {
        gap: 1px;
    }

    .mobile-menu {
        top: 68px;
    }

    .hero {
        min-height: 590px;
    }

    .hero-content h1 {
        font-size: 43px;

        letter-spacing: -2.6px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;
    }

    .hero-buttons .btn {
        width: 220px;
    }

    .quick-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-benefits-grid > div {
        padding: 17px 8px;

        justify-content: flex-start;
    }

    .quick-benefits-grid i {
        display: none;
    }

    .quick-benefits-grid strong {
        font-size: 11px;
    }

    .quick-benefits-grid span {
        font-size: 9px;
    }

    .section-heading h2,
    .center-heading h2,
    .about-content h2 {
        font-size: 32px;

        letter-spacing: -1.5px;
    }

    .catalog-toolbar {
        flex-direction: column;

        align-items: stretch;
    }

    .search-box {
        width: 100%;
    }

    .sort-wrapper {
        justify-content: space-between;
    }

    .filters {
        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 13px;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .products-grid {
        gap: 28px 10px;
    }

    .product-image {
        border-radius: 11px;
    }

    .product-badge {
        top: 8px;
        left: 8px;

        font-size: 7px;

        padding: 5px 7px;
    }

    .product-quick-add {
        right: 8px;
        bottom: 8px;

        width: 35px;
        height: 35px;
    }

    .product-title {
        font-size: 13px;
    }

    .product-price {
        font-size: 12px;
    }

    .product-old-price,
    .product-installment {
        font-size: 9px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;
    }

    .benefit-card i {
        margin: 20px 0 30px;
    }

    .collection-banner {
        min-height: 500px;
    }

    .collection-content h2 {
        font-size: 37px;

        letter-spacing: -2px;
    }

    .about-image > img {
        height: 480px;
    }

    .about-badge {
        width: 125px;
        height: 125px;

        right: 10px;
        bottom: 20px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .modal-overlay {
        padding: 0;

        align-items: flex-end;
    }

    .product-modal {
        max-height: 95vh;

        border-radius: 20px 20px 0 0;
    }

    .modal-gallery {
        padding: 12px;
    }

    .main-product-image {
        aspect-ratio: 1/.83;
    }

    .modal-info {
        padding: 28px 20px 35px;
    }

    .modal-info h2 {
        font-size: 27px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .quantity-selector {
        width: 130px;
    }

    .cart-drawer {
        width: 100%;
    }

    .toast {
        left: 14px;
        right: 14px;
        bottom: 15px;

        min-width: auto;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;

        right: 15px;
        bottom: 15px;
    }

}