* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
}

/* HEADER */
.site-header {
    background: #000;
}

.header-main {
    height: 110px;
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    gap: 30px;
    padding: 0 6%;
}

.menu-toggle {
    display: none;
}

.logo {
    justify-self: start;
}

.logo img {
    width: 150px;
}

.header-search {
    width: 100%;
    max-width: 520px;
    justify-self: center;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    display: flex;
}

.header-search input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 14px 20px;
    font-size: 15px;
}

.header-search button {
    border: 0;
    background: #fff;
    width: 55px;
    cursor: pointer;
}

.cart-link {
    justify-self: end;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-menu {
    height: 58px;
    background: #fff;
    border-bottom: 1px solid #ddd;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
}

.desktop-menu a {
    color: #111;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu {
    display: none;
}

/* HOME */
.banner-full {
    max-width: 1400px;
    margin: 22px auto;
    padding: 0 20px;
}

.banner-full img {
    width: 100%;
    border-radius: 16px;
}

.section {
    padding: 60px 7%;
}

.section-light {
    background: #fafafa;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-title span,
.brand-section span,
.social-proof-header span {
    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
}

.section-title h2,
.brand-section h2,
.cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    margin-top: 10px;
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

.benefits-section {
    padding: 50px 7%;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card,
.reviews-grid article,
.feature-card,
.garantia-card,
.garantia-rozallah,
.entrega-brasil,
.pagamentos-box {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.benefit-card {
    padding: 26px 20px;
    text-align: center;
}

.benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
    color: #111;
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.8;
}

.benefit-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.benefit-card p,
.brand-section p,
.cta p {
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    gap: 28px;
    justify-content: center;
    align-items: stretch;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .2s;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top center;
}

.product-info {
    padding: 22px;
}

.product-info h3 {
    font-size: 22px;
    margin: 10px 0;
}

.product-info p {
    color: #555;
    font-size: 15px;
}

.discount {
    display: inline-flex;
    background: #fcfcfc;
    border: 1px solid #bbb;
    color: #111;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
}

.price {
    margin: 18px 0;
}

.price strong {
    display: block;
    font-size: 24px;
}

.btn-primary,
.btn-secondary,
.buy-button {
    display: inline-block;
    background: linear-gradient(135deg, #9b6b3f, #b88a55);
color: #fff;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    transition: .2s;
}

.btn-primary {
    padding: 15px 28px;
}

.btn-secondary {
    display: block;
    padding: 14px;
}

.btn-primary:hover,
.btn-secondary:hover,
.buy-button:hover {
    transform: translateY(-2px);
}

.brand-section {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 90px 8%;
}

.brand-section p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #ddd;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.reviews-grid article {
    padding: 28px;
}

.cta {
    text-align: center;
    padding: 90px 8%;
    background: #fafafa;
}

.cta p {
    margin: 14px 0 24px;
}

/* PRODUTO */
.product-page {
    padding: 56px 8%;
}

.product-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.product-gallery>img {
    width: 100%;
    border-radius: 20px;
}

.product-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.product-thumbs img {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #eee;
    cursor: pointer;
}

.product-thumbs img.active {
    border-color: #111;
}

.product-badge {
    display: inline-flex;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-details h1 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    margin: 16px 0 8px;
}

.product-subtitle {
    color: #666;
    font-size: 19px;
    margin-bottom: 16px;
}

.product-rating {
    margin-bottom: 24px;
    font-weight: 700;
}

.product-price-box {
    background: #fafafa;
    padding: 24px;
    border-radius: 15px;
    margin-bottom: 28px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 8px;
}

.product-price-box strong {
    display: block;
    font-size: clamp(36px, 5vw, 48px);
}

.product-price-box small {
    color: #666;
}

.color-selector,
.size-selector {
    margin-bottom: 24px;
}

.selected-color {
    margin: 8px 0 12px;
    font-weight: 700;
}

.color-options,
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-options button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
}

.color-options button.active {
    transform: scale(1.12);
    border: 3px solid #111;
}

.size-options button {
    min-width: 54px;
    padding: 10px 18px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.size-options button.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.buy-button {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    letter-spacing: .5px;
}

.estoque-alerta,
.stock-alert {
    margin-top: 16px;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
}

.estoque-alerta {
    background: #fff4e5;
    border: 1px solid #ffd7a1;
    color: #b85c00;
}

.stock-alert {
    background: #fff4f4;
    border: 1px solid #ffd0d0;
    color: #c00;
}

.secure-info,
.size-table {
    background: #fafafa;
    padding: 20px;
    border-radius: 12px;
    margin-top: 18px;
}

.secure-info p:not(:last-child) {
    margin-bottom: 10px;
}

.size-table {
    background: #fff;
    border: 1px solid #eee;
}

.size-table h3 {
    margin-bottom: 14px;
}

.size-table-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.size-table-grid div {
    background: #fafafa;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
}

.size-table-grid strong,
.size-table-grid span {
    display: block;
}

.product-description-section,
.social-proof,
.faq-section,
.garantias-grid,
.garantia-rozallah,
.entrega-brasil {
    max-width: 1250px;
    margin: 56px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 24px;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.feature-card p,
.feature-card li,
.faq-answer,
.entrega-brasil p,
.garantia-subtitulo {
    color: #666;
}

.feature-card ul {
    list-style: none;
    margin-top: 14px;
}

.feature-card li {
    margin-bottom: 8px;
}

.feature-card li::before {
    content: "✓ ";
    font-weight: 700;
    color: #111;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 28px;
}

.social-proof-header h2,
.entrega-brasil h2,
.garantia-rozallah h2,
.faq-section h2 {
    font-size: clamp(26px, 3vw, 32px);
    line-height: 1.2;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.social-proof-grid img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.faq-section h2 {
    margin-bottom: 22px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item button,
.faq-question {
    width: 100%;
    padding: 18px;
    background: #fff;
    border: 0;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item p,
.faq-answer {
    padding: 0 18px 18px;
}

.faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.garantias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.garantia-card {
    min-height: 120px;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.garantia-card strong {
    font-size: 15px;
    line-height: 1.3;
}

.garantia-rozallah,
.entrega-brasil {
    padding: 28px;
}

.garantia-subtitulo {
    margin: 10px 0 22px;
}

.garantia-lista,
.entrega-itens {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.garantia-item,
.entrega-itens div {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 14px;
    font-weight: 600;
}

.entrega-brasil p {
    margin: 12px 0 22px;
}

.pagamentos-box {
    max-width: 1250px;
    margin: 40px auto 0;
    padding: 24px;
    text-align: center;
}

.pagamentos-lista {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.pagamentos-lista span {
    background: #f8f8f8;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
}

/* FOOTER */
.footer {
    margin-top: 70px;
    background: #050505;
    color: #fff;
    padding: 56px 8%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
}

.footer h3,
.footer h4 {
    margin-bottom: 12px;
}

.footer p,
.footer a {
    color: #ccc;
}

.footer a {
    display: block;
    margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border: 1px solid #b88a55;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .2s;
}

.footer-social a:hover {
  background: #b88a55;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-premium {
  display: block;
  margin-top: 70px;
  background: #050505;
  color: #fff;
  padding: 70px 8% 34px;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 1fr 1.2fr;
  gap: 42px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 34px;
  border-top: 1px solid #b88a55;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 36px;
}

.footer-bottom p {
    color: #bcbcbc;
    line-height: 1.8;
}

.footer-company {
    text-align: right;
    color: #9f9f9f;
}

.footer-brand,
.footer-column,
.footer-bottom > div {
  min-width: 0;
}

.footer-column {
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding-left: 34px;
}

@media (max-width: 900px) {
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-column {
    border-left: 0;
    padding-left: 0;
  }

  .footer-company {
    text-align: left;
  }
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 28px;
  }

  .footer-column {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-premium {
    padding: 48px 22px 30px;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-brand p {
    margin: 0 auto;
    max-width: 360px;
  }

  .footer-logo-premium {
    margin: 0 auto 24px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column h4::after,
  .footer-bottom h5::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer-company {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    padding: 9px 13px;
    font-size: 13px;
  }

  .footer-brand p,
  .footer-column p,
  .footer-column a,
  .footer-bottom p {
    font-size: 14px;
  }

  .footer-logo-premium {
    width: 210px;
  }
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .site-header {
        min-height: 96px;
        grid-template-columns: 44px 1fr 44px;
        padding: 0 14px;
    }

    .cart-link span {
        display: none;
    }

    .cart-link svg {
        width: 26px;
        height: 26px;
    }

    .banner-full {
        margin: 14px auto;
        padding: 0 8px;
    }

    .banner-full img {
        border-radius: 8px;
    }

    .section,
    .benefits-section,
    .product-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .benefits-container,
    .reviews-grid,
    .features-grid,
    .product-container,
    .footer {
        grid-template-columns: 1fr;
    }

    .products-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        padding: 0 calc((100vw - 280px) / 2) 18px;
        margin-left: -16px;
        margin-right: -16px;
    }

    .products-grid::-webkit-scrollbar,
    .social-proof-grid::-webkit-scrollbar,
    .product-thumbs::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 280px;
        max-width: 280px;
        scroll-snap-align: center;
    }

    .product-card img {
        height: 330px;
    }

    .product-container {
        gap: 32px;
    }

    .social-proof-header {
        text-align: left;
    }

    .social-proof-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type: x mandatory;
    }

    .social-proof-grid img {
        min-width: 280px;
        scroll-snap-align: center;
    }

    .garantias-grid,
    .garantia-lista,
    .entrega-itens,
    .size-table-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer {
        text-align: center;
    }
}

@media (max-width: 480px) {

    .section-title {
        margin-bottom: 30px;
    }

    .benefits-container,
    .garantias-grid,
    .garantia-lista,
    .entrega-itens {
        grid-template-columns: 1fr;
    }

    .buy-button {
        font-size: 16px;
    }
}


@media (max-width: 768px) {
    .header-main {
        height: 96px;
        grid-template-columns: 44px 1fr 44px;
        padding: 0 14px;
    }

    .menu-toggle {
        display: flex;
        background: none;
        border: 0;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
    }

    .logo {
        justify-self: center;
    }

    .logo img {
        width: 105px;
    }

    .header-search,
    .desktop-menu {
        display: none;
    }

    .cart-link {
        font-size: 24px;
    }

    .cart-link span {
        display: none;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        opacity: 0;
        visibility: hidden;
        transition: .3s ease;
        z-index: 998;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 60%;
        max-width: 330px;
        height: 100vh;
        background: #fff;
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        gap: 22px;
        transform: translateX(-100%);
        transition: transform .35s ease;
        z-index: 999;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .menu-close {
  align-self: flex-end;
  background: none;
  border: 0;
  font-size: 34px;
  cursor: pointer;
  margin-bottom: 0;
}

    .mobile-menu a {
        font-size: 17px;
        font-weight: 500;
        padding: 18px 0;
        transition: .2s;
    }

    .mobile-menu a:hover {
        padding-left: 8px;
    }

    body.menu-open {
        overflow: hidden;
    }


    .menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.menu-header img {
  width: 145px;
  height: auto;
  margin: 0 auto;
  display: block;
}
}


.search-svg,
.cart-svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-link {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-btn {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


@media (max-width: 768px) {

    .cart-svg {
        width: 28px;
        height: 28px;
    }

    .cart-link span {
        display: none;
    }
}

@media (max-width: 768px) {
  .header-main {
    height: 72px;
  }

  .logo img {
    width: 78px;
  }

  .banner-full {
    margin: 8px 0 18px;
    padding: 0;
  }

  .banner-full img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
  }
}

/* AJUSTE FINAL HOME MOBILE */
@media (max-width: 768px) {
  .banner-full {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
  }

  .banner-full img {
    width: 100%;
    border-radius: 0;
  }

  #promocoes.section {
    padding-top: 24px;
  }

  #promocoes .section-title {
    margin-bottom: 24px;
  }
}


@media (max-width: 768px) {
  .logo img {
    width: 105px !important;
  }
}


.product-image-box {
  position: relative;
}

.discount-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #a87945;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
}

.old-card-price {
  display: block;
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
  margin-bottom: 2px;
}


.combo-selector {
  background: #faf7f3;
  border: 1px solid #eadfd3;
  border-radius: 18px;
  padding: 22px;
  margin: 24px 0;
}

.combo-selector h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.combo-selector > p {
  color: #666;
  margin-bottom: 18px;
}

.combo-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  margin-top: 16px;
}

.combo-item strong {
  display: block;
  margin-bottom: 14px;
  font-size: 17px;
}

.combo-colors,
.combo-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.combo-colors {
  margin-bottom: 12px;
}

.combo-color-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
}

.combo-color-btn.active {
  border: 3px solid #111;
  transform: scale(1.12);
}

.combo-size-btn {
  min-width: 48px;
  padding: 9px 14px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.combo-size-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}