* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f5f5f7;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

img {
  max-width: 100%;
}




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

.store-hero {
  min-height: 650px;
  max-width: 1500px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  padding: 80px 8vw;

  background:
    radial-gradient(
      circle at 75% 45%,
      #dce9f8 0,
      #eef3f8 25%,
      transparent 55%
    );

  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  margin-bottom: 18px;

  color: #0071e3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-content h1 {
  margin: 0;

  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -4px;
  font-weight: 700;
}

.hero-content h1 strong {
  color: #0071e3;
}

.hero-content p {
  max-width: 540px;
  margin: 28px 0;

  color: #6e6e73;
  font-size: 19px;
  line-height: 1.55;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 0 24px;

  border-radius: 999px;

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

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

.primary-button {
  background: #0071e3;
  color: white;
}

.primary-button:hover {
  background: #0077ed;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,113,227,.22);
}

.secondary-button {
  background: white;
  color: #1d1d1f;
  border: 1px solid #d2d2d7;
}

.secondary-button:hover {
  border-color: #0071e3;
  color: #0071e3;
  transform: translateY(-2px);
}

.hero-product {
  position: relative;

  min-height: 480px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;

  width: 390px;
  height: 390px;

  border-radius: 50%;

  background: #dbeafe;
  filter: blur(25px);
}

.hero-phone {
  position: relative;
  z-index: 2;

  width: min(430px, 90%);
  height: 470px;

  object-fit: contain;

  filter:
    drop-shadow(0 35px 30px rgba(0,0,0,.18));

  transition: transform .4s ease;
}

.hero-product:hover .hero-phone {
  transform: translateY(-8px) scale(1.02);
}

/* =========================================================
   SEÇÕES
   ========================================================= */

.quick-categories,
.featured-section,
.trust-section,
.about-section,
.contact-section {
  max-width: 1400px;
  margin: auto;
  padding: 100px 6vw;
}

.section-heading span,
.contact-header span,
.about-content > span {
  color: #0071e3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-heading h2,
.contact-header h2,
.about-content h2 {
  margin: 10px 0 0;

  color: #1d1d1f;

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered p {
  max-width: 600px;
  margin: 18px auto 0;

  color: #6e6e73;
}

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

.quick-categories {
  background: #f5f5f7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;

  margin-top: 45px;
}

.category-card {
  min-height: 190px;
  padding: 28px;

  background: white;
  border: 1px solid #e5e5e7;
  border-radius: 22px;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.category-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border-radius: 14px;

  background: #f5f5f7;

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

.category-card h3 {
  margin: 0 0 6px;

  font-size: 20px;
}

.category-card p {
  margin: 0;

  color: #6e6e73;
  font-size: 13px;
}

/* =========================================================
   PRODUTOS
   ========================================================= */

.featured-section {
  background: white;
  max-width: none;
  padding-left: 6vw;
  padding-right: 6vw;
}

.featured-section > .section-heading {
  max-width: 1280px;
  margin: auto;
}

.see-all {
  color: #0071e3;
  font-size: 14px;
  font-weight: 600;
}

#produtos {
  max-width: 1280px;
  margin: 45px auto 0;
}

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

.product-card {
  position: relative;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  background: #fff;

  border: 1px solid #e5e5e7;
  border-radius: 26px;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 20px 50px rgba(0,0,0,.09);
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;

  padding: 6px 10px;

  border-radius: 999px;

  background: #e8f5e9;
  color: #16803c;

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

.product-photo {
  height: 310px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;

  background: #f5f5f7;
}

.product-photo img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  transition: transform .3s ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.035);
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  margin: 0;

  color: #1d1d1f;

  font-size: 25px;
  letter-spacing: -.7px;
}

.product-info p {
  margin: 5px 0 15px;

  color: #6e6e73;

  font-size: 14px;
}

.product-info strong {
  display: block;

  color: #1d1d1f;

  font-size: 24px;
}

.product-info small {
  display: block;

  margin-top: 4px;

  color: #6e6e73;

  font-size: 12px;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;

  margin-top: 20px;
}

.product-button {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 10px;

  border: 1px solid #d2d2d7;
  border-radius: 999px;

  background: #f5f5f7;
  color: #1d1d1f;

  font-size: 12px;
  font-weight: 600;

  transition: .2s ease;
}

.product-button:hover {
  background: #e8e8ed;
}

.product-button:last-child {
  grid-column: 1 / -1;
}

.whatsapp-button {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: white !important;

  gap: 8px;
}

.whatsapp-button:hover {
  background: #20bd5a !important;
  border-color: #20bd5a !important;
}

.whatsapp-icon {
  width: 17px;
  height: 17px;

  flex-shrink: 0;
}

/* =========================================================
   CONFIANÇA
   ========================================================= */

.trust-section {
  background: #f5f5f7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  margin-top: 50px;
}

.trust-card {
  padding: 32px;

  background: white;

  border: 1px solid #e5e5e7;
  border-radius: 22px;
}

.trust-number {
  margin-bottom: 35px;

  color: #0071e3;

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

.trust-card h3 {
  margin: 0 0 10px;

  font-size: 21px;
}

.trust-card p {
  margin: 0;

  color: #6e6e73;
  font-size: 14px;
}

/* =========================================================
   SOBRE
   ========================================================= */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  align-items: center;

  background: white;
}

.about-image {
  min-height: 480px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px;

  background: #f5f5f7;
  border-radius: 30px;
}

.about-image img {
  width: 80%;
  height: 420px;

  object-fit: contain;

  filter: drop-shadow(0 30px 25px rgba(0,0,0,.14));
}

.about-content p {
  max-width: 520px;

  margin: 25px 0 30px;

  color: #6e6e73;

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

/* =========================================================
   ATENDIMENTO
   ========================================================= */

.contact-section {
  background: #f5f5f7;
}

.contact-header {
  text-align: center;
}

.contact-header p {
  color: #6e6e73;
}

.contact-form {
  max-width: 850px;

  margin: 45px auto 0;
  padding: 35px;

  background: white;

  border: 1px solid #e5e5e7;
  border-radius: 25px;

  box-shadow: 0 15px 45px rgba(0,0,0,.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;

  margin-bottom: 18px;

  color: #424245;

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  margin-top: 7px;
  padding: 13px 14px;

  border: 1px solid #d2d2d7;
  border-radius: 12px;

  background: white;
  color: #1d1d1f;

  font: inherit;
  font-weight: 400;

  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0,113,227,.1);
}

.consent {
  display: flex !important;
  align-items: flex-start;

  gap: 9px;
}

.consent input {
  width: auto;
  margin-top: 3px;
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.privacy-note {
  margin: 18px 0 0;

  color: #86868b;

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

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #1d1d1f;
  color: #f5f5f7;

  padding: 55px 6vw 25px;
}

.footer-main {
  max-width: 1280px;

  margin: auto;

  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  font-size: 21px;
  font-weight: 700;
}

.footer-main p {
  color: #a1a1a6;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;

  color: #d2d2d7;

  font-size: 13px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1280px;

  margin: 45px auto 0;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;

  border-top: 1px solid #424245;

  color: #86868b;

  font-size: 11px;
}

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

@media (max-width: 850px) {

  .header-top {
    height: 64px;
    padding: 0 18px;
  }

  .main-menu {
    display: none;
  }



  .header-whatsapp {
    padding: 8px 13px;
    font-size: 11px;
  }

  .store-hero {
    min-height: auto;

    grid-template-columns: 1fr;

    padding: 60px 25px 30px;

    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-product {
    min-height: 330px;
  }

  .hero-phone {
    height: 330px;
  }

  .hero-glow {
    width: 270px;
    height: 270px;
  }

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

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    min-height: 350px;
  }

  .about-image img {
    height: 320px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    flex-direction: column;
  }
}

@media (max-width: 600px) {

  .store-hero {
    padding: 48px 18px 20px;
  }

  .hero-content h1 {
    font-size: 46px;
    letter-spacing: -2.5px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-product {
    min-height: 290px;
  }

  .hero-phone {
    height: 290px;
  }

  .quick-categories,
  .featured-section,
  .trust-section,
  .about-section,
  .contact-section {
    padding: 70px 18px;
  }

  .category-grid {
    gap: 10px;
  }

  .category-card {
    min-height: 160px;
    padding: 20px;
  }

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

  #produtos .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-photo {
    height: 185px;
    padding: 12px;
  }

  .product-info {
    padding: 14px;
  }

  .product-info h3 {
    font-size: 17px;
  }

  .product-info p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .product-info strong {
    font-size: 17px;
  }

  .product-actions {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .product-button,
  .product-button:last-child {
    grid-column: auto;
    width: 100%;
    min-height: 38px;
    font-size: 10px;
  }

  .product-badge {
    top: 9px;
    left: 9px;
    padding: 4px 7px;
    font-size: 9px;
  }

  .contact-form {
    padding: 22px 17px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================================================
   iPhoneCenter — Refinamento premium do catálogo
   ========================================================= */

#produtos .cards {
  align-items: stretch;
}

#produtos .product-card {
  min-height: 590px;
}

#produtos .product-photo {
  position: relative;
  height: 340px;
  padding: 30px 35px;
}

#produtos .product-photo::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  filter: blur(30px);
  z-index: 0;
}

#produtos .product-photo img {
  position: relative;
  z-index: 1;
}

#produtos .product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#produtos .product-info h3 {
  font-size: 26px;
  letter-spacing: -1px;
}

#produtos .product-info strong {
  margin-top: auto;
  padding-top: 12px;
  font-size: 26px;
}

#produtos .product-actions {
  margin-top: 22px;
}

#produtos .product-button {
  min-height: 44px;
  font-size: 12px;
}

#produtos .product-button:first-child {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
}

#produtos .product-button:first-child:hover {
  background: #333336;
}

#produtos .whatsapp-button {
  box-shadow: 0 5px 15px rgba(37,211,102,.18);
}

#produtos .product-button:last-child {
  background: transparent;
}

/* Destaque visual da seção */
.featured-section {
  position: relative;
}

.featured-section::before {
  content: "";
  display: block;
  width: 45px;
  height: 4px;
  margin: 0 auto 45px;

  border-radius: 10px;

  background: #0071e3;
}

/* Mobile */
@media (max-width: 600px) {

  #produtos .product-card {
    min-height: 475px;
  }

  #produtos .product-photo {
    height: 205px;
    padding: 12px;
  }

  #produtos .product-info h3 {
    font-size: 17px;
  }

  #produtos .product-info strong {
    font-size: 17px;
  }

  #produtos .product-info {
    padding: 13px;
  }

  #produtos .product-actions {
    margin-top: 12px;
  }
}


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

.hero-subtitle {
  max-width: 520px;
}

.hero-offer {
  display: flex;
  flex-direction: column;
  gap: 2px;

  margin: 22px 0;

  color: #6e6e73;
}

.hero-offer span {
  font-size: 12px;
}

.hero-offer strong {
  color: #1d1d1f;
  font-size: 30px;
  letter-spacing: -1px;
}

.hero-offer small {
  font-size: 11px;
  color: #86868b;
}

.hero-label-floating {
  position: absolute;
  top: 55px;
  right: 18%;

  z-index: 5;

  padding: 7px 13px;

  border-radius: 999px;

  background: #1d1d1f;
  color: white;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;

  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

@media (max-width: 850px) {

  .hero-offer {
    align-items: center;
  }

  .hero-label-floating {
    top: 15px;
    right: 18%;
  }

}

@media (max-width: 600px) {

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-offer strong {
    font-size: 25px;
  }

  .hero-label-floating {
    top: 8px;
    right: 12%;
  }

}






@media (max-width: 850px) {



  .header-top {
    gap: 10px;
  }

  .header-whatsapp {
    font-size: 10px;
    padding: 8px 11px;
  }



}


/* =========================================================
   FAIXA DE BENEFÍCIOS
   ========================================================= */

.benefits-bar {
  max-width: 1280px;
  margin: 0 auto;

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

  background: #fff;

  border: 1px solid #e5e5e7;
  border-radius: 22px;

  box-shadow: 0 10px 35px rgba(0,0,0,.05);

  transform: translateY(-28px);

  position: relative;
  z-index: 10;
}

.benefit {
  min-height: 105px;
  padding: 22px 25px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right: 1px solid #e5e5e7;
}

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

.benefit strong {
  color: #1d1d1f;
  font-size: 14px;
}

.benefit span {
  margin-top: 5px;

  color: #6e6e73;

  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 850px) {

  .benefits-bar {
    margin: -10px 18px 0;

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

    border-radius: 18px;
  }

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

  .benefit:nth-child(1),
  .benefit:nth-child(2) {
    border-bottom: 1px solid #e5e5e7;
  }

}

@media (max-width: 500px) {

  .benefits-bar {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 80px;
    border-right: 0;
    border-bottom: 1px solid #e5e5e7;
  }

  .benefit:last-child {
    border-bottom: 0;
  }

}


/* HERO — acabamento premium */
.store-hero{
  min-height:620px;
  padding:70px 7%;
  background:
    radial-gradient(circle at 78% 42%,rgba(0,122,255,.12),transparent 30%),
    linear-gradient(180deg,#fff 0%,#f5f5f7 100%);
  overflow:hidden;
}

.hero-content{
  max-width:560px;
}

.hero-label{
  display:inline-flex;
  align-items:center;
  padding:7px 13px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.hero-content h1{
  font-size:clamp(46px,6vw,78px);
  line-height:.98;
  letter-spacing:-.055em;
  margin:0 0 22px;
  color:#111;
  font-weight:800;
}

.hero-subtitle{
  max-width:500px;
  font-size:19px;
  line-height:1.55;
  color:#555;
  margin-bottom:20px;
}

.hero-offer{
  font-size:17px;
  font-weight:700;
  color:#111;
  margin-bottom:28px;
}

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

.hero-phone{
  transform:scale(1.08);
  filter:drop-shadow(0 30px 45px rgba(0,0,0,.18));
}

.hero-phone img{
  max-height:520px;
  object-fit:contain;
}

.hero-glow{
  opacity:.8;
}

@media(max-width:760px){
  .store-hero{
    min-height:auto;
    padding:45px 20px 55px;
    text-align:center;
  }

  .hero-content{
    max-width:none;
  }

  .hero-content h1{
    font-size:48px;
  }

  .hero-subtitle{
    margin-left:auto;
    margin-right:auto;
    font-size:16px;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-phone{
    margin-top:30px;
    transform:none;
  }

  .hero-phone img{
    max-height:390px;
  }
}


/* CATEGORIAS — visual premium */
.quick-categories{
  padding:70px 7%;
  background:#fff;
}

.category-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.category-card{
  min-height:150px;
  padding:28px 24px;
  border:1px solid #e5e5e7;
  border-radius:24px;
  background:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.category-card:hover{
  transform:translateY(-5px);
  border-color:#cfcfd3;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.category-card strong{
  font-size:20px;
  color:#111;
  letter-spacing:-.02em;
}

.category-card span{
  margin-top:8px;
  color:#777;
  font-size:14px;
}

.category-card::after{
  content:"→";
  margin-top:18px;
  font-size:20px;
  font-weight:700;
  color:#111;
}

/* BENEFÍCIOS */
.benefits-bar{
  max-width:1200px;
  margin:0 auto;
  padding:20px 0;
}

.benefit{
  min-height:105px;
  padding:20px 22px;
  background:#f5f5f7;
  border-radius:18px;
  border:1px solid #e7e7e9;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.benefit strong{
  color:#111;
  font-size:15px;
  margin-bottom:5px;
}

.benefit span{
  color:#777;
  font-size:13px;
  line-height:1.4;
}

/* TÍTULOS DE SEÇÃO */
.section-heading{
  max-width:1200px;
  margin:0 auto 35px;
}

.section-heading h2{
  font-size:clamp(32px,4vw,48px);
  letter-spacing:-.045em;
  color:#111;
  margin:0;
}

.section-heading p{
  margin:10px 0 0;
  color:#777;
  font-size:16px;
}

/* CATÁLOGO */
.featured-section{
  padding:85px 7%;
  background:#f5f5f7;
}

#produtos .cards{
  max-width:1200px;
  margin:0 auto;
  gap:22px;
}

.product-card{
  border:1px solid #e3e3e5;
  border-radius:28px;
  background:#fff;
  overflow:hidden;
  transition:transform .25s ease,box-shadow .25s ease;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(0,0,0,.10);
}

.product-photo{
  min-height:360px;
  padding:35px;
  background:
    radial-gradient(circle at center,rgba(255,255,255,.9),transparent 65%),
    #f7f7f8;
}

.product-photo img{
  max-height:300px;
  width:100%;
  object-fit:contain;
  transition:transform .3s ease;
}

.product-card:hover .product-photo img{
  transform:scale(1.045);
}

.product-info{
  padding:24px;
}

.product-info h3{
  font-size:24px;
  letter-spacing:-.025em;
  margin-bottom:5px;
}

.product-info .price{
  font-size:22px;
  font-weight:800;
  color:#111;
}

.product-actions{
  margin-top:20px;
}

@media(max-width:900px){
  .category-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .quick-categories,
  .featured-section{
    padding:55px 18px;
  }

  .category-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .category-card{
    min-height:125px;
    padding:20px 17px;
    border-radius:19px;
  }

  .category-card strong{
    font-size:17px;
  }

  .product-photo{
    min-height:260px;
    padding:20px;
  }

  .product-photo img{
    max-height:220px;
  }

  .product-info{
    padding:18px;
  }

  .product-info h3{
    font-size:19px;
  }
}


/* BANNER PROMOCIONAL */
.promo-banner{
  max-width:1200px;
  min-height:380px;
  margin:25px auto 0;
  padding:55px 70px;
  border-radius:32px;
  background:
    radial-gradient(circle at 82% 45%,rgba(0,122,255,.20),transparent 30%),
    linear-gradient(135deg,#111 0%,#202124 100%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  overflow:hidden;
  position:relative;
}

.promo-content{
  position:relative;
  z-index:2;
  max-width:560px;
}

.promo-label{
  display:inline-block;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  opacity:.75;
  margin-bottom:18px;
}

.promo-banner h2{
  margin:0;
  font-size:clamp(38px,5vw,62px);
  line-height:.98;
  letter-spacing:-.05em;
}

.promo-banner p{
  max-width:470px;
  margin:20px 0 26px;
  color:#c9c9cc;
  font-size:16px;
  line-height:1.5;
}

.promo-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 23px;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-weight:750;
  transition:transform .2s ease;
}

.promo-button:hover{
  transform:translateY(-2px);
}

.promo-device{
  position:absolute;
  right:30px;
  bottom:-70px;
  width:390px;
  height:460px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.promo-device img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 35px 35px rgba(0,0,0,.45));
  transform:rotate(-5deg);
}

@media(max-width:800px){
  .promo-banner{
    margin:10px 18px 0;
    padding:40px 28px 310px;
    min-height:560px;
    border-radius:26px;
  }

  .promo-device{
    width:280px;
    height:320px;
    right:50%;
    transform:translateX(50%);
    bottom:-45px;
  }

  .promo-banner h2{
    font-size:43px;
  }
}


/* CATÁLOGO — POLIMENTO FINAL */
#destaques{
  padding-top:90px;
}

#destaques .section-heading{
  text-align:center;
  margin-bottom:42px;
}

#destaques .section-heading h2{
  font-weight:800;
  letter-spacing:-.055em;
}

#destaques .section-heading p{
  max-width:620px;
  margin:12px auto 0;
}

#produtos .cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  max-width:1200px;
  margin:auto;
  gap:24px;
}

.product-card{
  position:relative;
  min-width:0;
  border-radius:30px;
  background:#fff;
  border:1px solid #e5e5e7;
  overflow:hidden;
}

.product-card .product-photo{
  min-height:390px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  background:
    radial-gradient(circle at 50% 45%,#fff 0%,#f7f7f8 62%,#f1f1f3 100%);
}

.product-card .product-photo img{
  width:100%;
  max-width:330px;
  height:330px;
  object-fit:contain;
}

.product-card .product-info{
  padding:28px 28px 30px;
}

.product-card .product-info h3{
  margin:0;
  color:#111;
  font-size:25px;
  line-height:1.1;
  letter-spacing:-.035em;
}

.product-card .product-info .storage{
  display:block;
  margin-top:6px;
  color:#777;
  font-size:14px;
}

.product-card .product-info .price{
  display:block;
  margin-top:16px;
  color:#111;
  font-size:24px;
  font-weight:800;
  letter-spacing:-.025em;
}

.product-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:22px;
}

.product-actions .product-button:last-child{
  grid-column:1 / -1;
}

.product-button{
  min-height:48px;
  border-radius:13px;
  font-size:14px;
  font-weight:750;
  border:1px solid #dcdcdf;
  transition:transform .2s ease,box-shadow .2s ease;
}

.product-button:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.product-actions .product-button:first-child{
  background:#111;
  color:#fff;
  border-color:#111;
}

.product-actions .whatsapp-button{
  background:#25d366;
  color:#fff;
  border-color:#25d366;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.product-actions .product-button:last-child{
  background:#fff;
  color:#111;
}

@media(max-width:650px){
  #produtos .cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }

  .product-card{
    border-radius:20px;
  }

  .product-card .product-photo{
    min-height:210px;
    padding:10px;
  }

  .product-card .product-photo img{
    height:190px;
  }

  .product-card .product-info{
    padding:16px;
  }

  .product-card .product-info h3{
    font-size:18px;
  }

  .product-card .product-info .price{
    font-size:18px;
    margin-top:10px;
  }

  .product-actions{
    gap:7px;
    margin-top:15px;
  }

  .product-button{
    min-height:43px;
    font-size:12px;
  }
}


/* =========================================================
   CABEÇALHO PREMIUM — iPhoneCenter
   ========================================================= */



@media(max-width:850px){

  .main-menu a:nth-child(n+4){
    display:none;
  }
}

@media(max-width:500px){

  .main-menu a:nth-child(n+3){
    display:none;
  }
}


/* SOBRE — VISUAL INSTITUCIONAL */
.about-section{
  padding:100px 7%;
  background:#fff;
}

.about-section .about-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  align-items:center;
  gap:80px;
}

.about-section .about-image{
  min-height:520px;
  border-radius:32px;
  overflow:hidden;
  background:#f5f5f7;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.about-section .about-image img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  transition:transform .5s ease;
}

.about-section .about-image:hover img{
  transform:scale(1.035);
}

.about-section .about-content{
  max-width:540px;
}

.about-section .about-content .eyebrow{
  display:inline-block;
  margin-bottom:16px;
  color:#777;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
}

.about-section .about-content h2{
  margin:0;
  color:#111;
  font-size:clamp(36px,4vw,56px);
  line-height:1;
  letter-spacing:-.055em;
}

.about-section .about-content p{
  margin:22px 0 0;
  color:#666;
  font-size:17px;
  line-height:1.65;
}

.about-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:30px;
}

.about-point{
  padding:18px;
  border:1px solid #e5e5e7;
  border-radius:18px;
  background:#f8f8f9;
}

.about-point strong{
  display:block;
  color:#111;
  font-size:14px;
}

.about-point span{
  display:block;
  margin-top:5px;
  color:#777;
  font-size:12px;
  line-height:1.45;
}

@media(max-width:800px){
  .about-section{
    padding:70px 20px;
  }

  .about-section .about-inner{
    grid-template-columns:1fr;
    gap:38px;
  }

  .about-section .about-image{
    min-height:350px;
  }

  .about-section .about-image img{
    min-height:350px;
  }

  .about-section .about-content{
    max-width:none;
  }

  .about-section .about-content h2{
    font-size:42px;
  }
}

@media(max-width:480px){
  .about-points{
    grid-template-columns:1fr;
  }
}


/* ATENDIMENTO — ÁREA PREMIUM */
.contact-section{
  padding:100px 7%;
  background:#f5f5f7;
}

.contact-section > *{
  max-width:1200px;
}

.contact-section .section-heading{
  margin-bottom:40px;
}

.contact-section form{
  max-width:900px;
  margin:0 auto;
  padding:38px;
  border:1px solid #e1e1e4;
  border-radius:30px;
  background:#fff;
  box-shadow:0 20px 60px rgba(0,0,0,.06);
}

.contact-section form label{
  display:block;
  margin-bottom:7px;
  color:#222;
  font-size:13px;
  font-weight:700;
}

.contact-section form input,
.contact-section form select,
.contact-section form textarea{
  width:100%;
  border:1px solid #dcdce0;
  border-radius:13px;
  background:#fafafa;
  color:#111;
  padding:14px 15px;
  font:inherit;
  font-size:14px;
  outline:none;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.contact-section form input:focus,
.contact-section form select:focus,
.contact-section form textarea:focus{
  background:#fff;
  border-color:#111;
  box-shadow:0 0 0 3px rgba(0,0,0,.06);
}

.contact-section form textarea{
  min-height:130px;
  resize:vertical;
}

.contact-section form button[type="submit"]{
  min-height:52px;
  width:100%;
  border:0;
  border-radius:14px;
  background:#111;
  color:#fff;
  font-size:15px;
  font-weight:750;
  cursor:pointer;
  transition:transform .2s ease,opacity .2s ease;
}

.contact-section form button[type="submit"]:hover{
  transform:translateY(-2px);
  opacity:.92;
}

.contact-section .privacy-note{
  color:#777;
  font-size:12px;
  line-height:1.5;
}

@media(max-width:600px){
  .contact-section{
    padding:70px 18px;
  }

  .contact-section form{
    padding:24px 18px;
    border-radius:23px;
  }
}


/* RODAPÉ — ACABAMENTO PROFISSIONAL */
.site-footer{
  background:#111;
  color:#fff;
  padding:0;
}

.footer-main{
  max-width:1200px;
  margin:auto;
  padding:65px 7% 45px;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:55px;
}

.site-footer h3{
  margin:0 0 16px;
  color:#fff;
  font-size:18px;
  letter-spacing:-.02em;
}

.site-footer p{
  margin:0;
  max-width:360px;
  color:#aaa;
  font-size:14px;
  line-height:1.65;
}

.site-footer a{
  color:#aaa;
  font-size:14px;
  transition:color .2s ease;
}

.site-footer a:hover{
  color:#fff;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  max-width:1200px;
  margin:auto;
  padding:20px 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#888;
  font-size:12px;
}

@media(max-width:700px){
  .footer-main{
    grid-template-columns:1fr;
    gap:35px;
    padding:50px 22px 35px;
  }

  .footer-bottom{
    padding:18px 22px;
    flex-direction:column;
    align-items:flex-start;
  }
}


/* FAIXA DE OFERTAS */
.offer-strip{
  max-width:1200px;
  margin:70px auto 0;
  padding:30px 38px;
  border-radius:24px;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.offer-strip-label{
  display:block;
  margin-bottom:7px;
  color:#aaa;
  font-size:10px;
  font-weight:800;
  letter-spacing:.14em;
}

.offer-strip h2{
  margin:0;
  font-size:clamp(25px,3vw,36px);
  line-height:1.05;
  letter-spacing:-.04em;
}

.offer-strip p{
  margin:9px 0 0;
  color:#aaa;
  font-size:14px;
}

.offer-strip-button{
  flex-shrink:0;
  min-height:46px;
  padding:0 22px;
  border-radius:999px;
  background:#fff;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:750;
}

@media(max-width:650px){
  .offer-strip{
    margin:45px 18px 0;
    padding:27px 23px;
    flex-direction:column;
    align-items:flex-start;
    border-radius:21px;
  }

  .offer-strip-button{
    width:100%;
  }
}


/* DIFERENCIAIS */
.service-highlights{
  padding:95px 7%;
  background:#fff;
}

.service-highlights .section-heading{
  margin-bottom:45px;
  text-align:center;
}

.service-highlights .hero-label{
  margin-bottom:15px;
}

.service-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.service-card{
  padding:32px;
  min-height:250px;
  border:1px solid #e3e3e6;
  border-radius:26px;
  background:#f7f7f8;
  transition:transform .25s ease,box-shadow .25s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.service-number{
  margin-bottom:45px;
  color:#999;
  font-size:12px;
  font-weight:800;
  letter-spacing:.1em;
}

.service-card h3{
  margin:0;
  color:#111;
  font-size:21px;
  letter-spacing:-.025em;
}

.service-card p{
  margin:10px 0 0;
  color:#777;
  font-size:14px;
  line-height:1.55;
}

@media(max-width:800px){
  .service-highlights{
    padding:70px 20px;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
  }

  .service-number{
    margin-bottom:30px;
  }
}


/* STATUS DOS PRODUTOS */
.product-card{
  position:relative;
}

.product-card .product-status,
.product-card .status{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:10px;
  color:#555;
  font-size:12px;
  font-weight:650;
}

.product-card .product-status::before,
.product-card .status::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#25b85a;
  box-shadow:0 0 0 3px rgba(37,184,90,.10);
}

.product-card .product-badge,
.product-card .badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:3;
  padding:7px 10px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:10px;
  font-weight:800;
  letter-spacing:.04em;
}

.product-card .product-photo{
  position:relative;
}

@media(max-width:600px){
  .product-card .product-badge,
  .product-card .badge{
    top:10px;
    left:10px;
    padding:5px 7px;
    font-size:9px;
  }
}


/* BENEFÍCIOS — DESTAQUE VISUAL */
.benefits-bar{
  max-width:1200px;
  margin:0 auto;
  padding:22px 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  background:transparent;
}

.benefit{
  position:relative;
  min-height:112px;
  padding:23px 24px 23px 54px;
  border:1px solid #e3e3e6;
  border-radius:20px;
  background:#fff;
  box-shadow:0 8px 28px rgba(0,0,0,.035);
}

.benefit::before{
  content:"✓";
  position:absolute;
  left:20px;
  top:24px;
  width:23px;
  height:23px;
  border-radius:50%;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:800;
}

.benefit strong{
  display:block;
  margin:0 0 5px;
  color:#111;
  font-size:14px;
  line-height:1.3;
}

.benefit span{
  display:block;
  color:#777;
  font-size:12px;
  line-height:1.45;
}

@media(max-width:900px){
  .benefits-bar{
    grid-template-columns:repeat(2,1fr);
    padding:18px;
  }
}

@media(max-width:520px){
  .benefits-bar{
    grid-template-columns:1fr;
    padding:18px;
  }
}



/* HERO — REFINAMENTO FINAL */
.store-hero{
  position:relative;
  isolation:isolate;
}

.store-hero::before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  right:-180px;
  top:40px;
  border-radius:50%;
  background:rgba(0,122,255,.07);
  filter:blur(10px);
  z-index:-1;
}

.hero-content{
  position:relative;
  z-index:3;
}

.hero-content h1{
  text-wrap:balance;
}

.hero-offer{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e2e2e5;
  box-shadow:0 7px 25px rgba(0,0,0,.05);
}

.hero-phone{
  position:relative;
  z-index:2;
}

.hero-phone::before{
  content:"";
  position:absolute;
  width:380px;
  height:380px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:rgba(255,255,255,.9);
  box-shadow:0 25px 80px rgba(0,0,0,.08);
  z-index:-1;
}

@media(max-width:760px){
  .store-hero::before{
    width:350px;
    height:350px;
    right:-170px;
    top:300px;
  }

  .hero-offer{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-phone::before{
    width:290px;
    height:290px;
  }
}


/* WHATSAPP DO CABEÇALHO — AJUSTE PARA CELULAR */
@media(max-width:800px){
  .header-top{
    width:100%;
    box-sizing:border-box;
    overflow:hidden;
  }





  .header-whatsapp{
    flex:0 0 auto;
    width:auto;
    max-width:135px;
    min-width:0;
    padding:0 11px;
    white-space:nowrap;
    overflow:hidden;
    box-sizing:border-box;
    font-size:11px;
  }
}


/* BOTÕES DOS CARDS — CORREÇÃO MOBILE */
@media(max-width:650px){

  #produtos .cards{
    width:100%;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .product-card{
    width:100%;
    min-width:0;
    overflow:hidden;
  }

  .product-card .product-info{
    width:100%;
    min-width:0;
    padding:14px 11px 16px;
  }

  .product-actions{
    width:100%;
    min-width:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6px;
  }

  .product-actions .product-button{
    width:100%;
    min-width:0;
    max-width:100%;
    padding:0 5px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:10px;
  }

  .product-actions .product-button:last-child{
    grid-column:1 / -1;
  }

  .product-actions .whatsapp-button{
    gap:4px;
  }

  .product-actions .whatsapp-button svg{
    width:14px;
    height:14px;
    flex:0 0 14px;
  }
}

@media(max-width:390px){

  #produtos .cards{
    gap:8px;
  }

  .product-card .product-info{
    padding-left:9px;
    padding-right:9px;
  }

  .product-actions{
    gap:5px;
  }

  .product-actions .product-button{
    font-size:9px;
    min-height:39px;
  }
}


/* REMOVER ÍCONE DO WHATSAPP NOS CARDS */
#produtos .product-card .whatsapp-button svg{
  display:none !important;
}

#produtos .product-card .whatsapp-button{
  gap:0;
}


/* CARDS MOBILE — ACABAMENTO */
@media(max-width:650px){

  .product-card{
    box-shadow:0 6px 22px rgba(0,0,0,.055);
  }

  .product-card .product-photo{
    min-height:225px;
    padding:12px;
  }

  .product-card .product-photo img{
    height:205px;
    max-width:100%;
  }

  .product-card .product-info h3{
    line-height:1.15;
  }

  .product-card .product-info .storage{
    font-size:11px;
  }

  .product-card .product-info .price{
    margin-top:8px;
    font-size:17px;
  }

  .product-card .product-status,
  .product-card .status{
    font-size:10px;
  }

  .product-actions .product-button{
    min-height:40px;
    border-radius:10px;
  }
}


/* BANNER PRINCIPAL EM IMAGEM */
.home-banner-image{
  width:100%;
  background:#f5f5f7;
  overflow:hidden;
}

.home-banner-image img{
  display:block;
  width:100%;
  height:auto;
  max-height:680px;
  object-fit:cover;
  object-position:center;
}

@media(max-width:700px){
  .home-banner-image img{
    width:100%;
    height:auto;
    min-height:0;
    object-fit:contain;
  }
}


.product-description {
  margin: 8px 0 12px;
  font-size: 14px;
  line-height: 1.4;
}

.colors-selector {
  margin: 10px 0 14px;
}

.colors-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.colors-arrow {
  font-size: 11px;
}

.colors-options {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 0 2px;
}

.colors-selector.open .colors-options {
  display: flex;
}

.color-option {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
}

.color-option.active {
  border-color: #111;
  font-weight: 600;
}


/* Menu de cores flutuante: não movimenta os produtos vizinhos */
.product-card {
  overflow: visible !important;
}

.colors-selector {
  position: relative;
}

.colors-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.colors-selector.open .colors-options {
  display: flex;
}

/* Botões de armazenamento — padrão para todos os iPhones */
.storage-options,
.storage-selector,
.storages,
.storage-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.storage-options button,
.storage-selector button,
.storages button,
.storage-buttons button {
  min-width: 82px;
  height: 40px;
  padding: 0 14px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 8px;
  line-height: 1;
}

@media (max-width: 600px) {
  .storage-options button,
  .storage-selector button,
  .storages button,
  .storage-buttons button {
    min-width: 78px;
    height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }
}

/* ===== ARMAZENAMENTO — NOVO VISUAL ===== */

.storage-options,
.storage-selector,
.storages,
.storage-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  margin: 10px 0 14px;
}

/* Cada botão de GB */
.storage-options button,
.storage-selector button,
.storages button,
.storage-buttons button {
  flex: 0 0 auto;
  min-width: 88px;
  height: 42px;
  padding: 0 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  border: 1px solid #d5d5d5;
  border-radius: 9px;
  background: #fff;

  font-size: 14px;
  font-weight: 600;
  color: #222;

  cursor: pointer;
  white-space: nowrap;

  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
}

/* Ao passar o dedo/mouse */
.storage-options button:hover,
.storage-selector button:hover,
.storages button:hover,
.storage-buttons button:hover {
  border-color: #999;
  background: #f7f7f7;
}

/* Botão selecionado */
.storage-options button.active,
.storage-selector button.active,
.storages button.active,
.storage-buttons button.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Toque */
.storage-options button:active,
.storage-selector button:active,
.storages button:active,
.storage-buttons button:active {
  transform: scale(0.97);
}

/* Celular */
@media (max-width: 600px) {
  .storage-options,
  .storage-selector,
  .storages,
  .storage-buttons {
    gap: 8px;
  }

  .storage-options button,
  .storage-selector button,
  .storages button,
  .storage-buttons button {
    min-width: 82px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
}

/* Correção dos botões de armazenamento */
.storage-options,
.storage-selector,
.storages,
.storage-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.storage-options button,
.storage-selector button,
.storages button,
.storage-buttons button {
  min-width: 92px;
  width: auto;
  height: 44px;
  padding: 0 18px;
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  white-space: nowrap;
  overflow: visible;

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

/* No celular, mantém espaço suficiente para 256 GB e 512 GB */
@media (max-width: 600px) {
  .storage-options button,
  .storage-selector button,
  .storages button,
  .storage-buttons button {
    min-width: 90px;
    height: 42px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 14px;
  }
}

/* CORREÇÃO DEFINITIVA — BOTÕES DE GB SEM SOBREPOSIÇÃO */

.storage-options,
.storage-selector,
.storages,
.storage-buttons {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.storage-options button,
.storage-selector button,
.storages button,
.storage-buttons button {
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 8px !important;
  box-sizing: border-box !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;

  font-size: 14px !important;
  line-height: 1 !important;
}

/* Garante que o texto do botão nunca seja esmagado */
.storage-options button *,
.storage-selector button *,
.storages button *,
.storage-buttons button * {
  white-space: nowrap !important;
  overflow: visible !important;
}

/* Celular */
@media (max-width: 600px) {
  .storage-options,
  .storage-selector,
  .storages,
  .storage-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .storage-options button,
  .storage-selector button,
  .storages button,
  .storage-buttons button {
    width: 100% !important;
    height: 42px !important;
    padding: 0 6px !important;
    font-size: 14px !important;
  }
}

/* AJUSTE FINAL DO BANNER PRINCIPAL */
.hero-product {
  min-height: 520px !important;
  overflow: visible !important;
}

.hero-phone {
  width: min(620px, 100%) !important;
  height: auto !important;
  max-height: 520px !important;
  object-fit: contain !important;
  transform: scale(1.08) !important;
  filter: drop-shadow(0 30px 35px rgba(0,0,0,.20)) !important;
}

.hero-phone:hover {
  transform: scale(1.11) !important;
}

@media (max-width: 760px) {
  .hero-product {
    min-height: 360px !important;
  }

  .hero-phone {
    width: 100% !important;
    max-width: 520px !important;
    height: auto !important;
    max-height: 360px !important;
    transform: scale(1.04) !important;
  }

  .hero-phone:hover {
    transform: scale(1.06) !important;
  }
}





@media(max-width:1000px){

  .header-action:nth-child(1){
    display:none;
  }
}

@media(max-width:700px){

  .header-cart span:not(.cart-icon){
    display:none;
  }
}






















































@media(max-width:700px){











  .header-action{
    display:none;
  }

  .header-cart span:not(.cart-icon){
    display:none;
  }




}

@media(max-width:430px){








}


/* =========================================================
   iPhoneCenter — CABEÇALHO PRINCIPAL
   ========================================================= */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid #e7e7e7;
  box-shadow:0 2px 14px rgba(0,0,0,.045);
}

.header-main{
  width:100%;
  max-width:1320px;
  min-height:82px;
  margin:0 auto;
  padding:0 28px;
  display:flex;
  align-items:center;
  gap:32px;
}

.site-logo{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
  white-space:nowrap;
  color:#111;
  text-decoration:none;
}

.site-logo img{
  width:43px;
  height:43px;
  object-fit:contain;
  border-radius:10px;
}

.site-logo > span{
  font-size:21px;
  font-weight:750;
  letter-spacing:-.7px;
}

.site-logo span span{
  font-weight:400;
  color:#555;
}

.header-search{
  height:46px;
  flex:1;
  max-width:540px;
  display:flex;
  align-items:center;
  background:#f5f5f7;
  border:1px solid #dedee1;
  border-radius:9px;
  overflow:hidden;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}

.header-search:focus-within{
  background:#fff;
  border-color:#999;
  box-shadow:0 0 0 3px rgba(0,0,0,.045);
}

.header-search input{
  flex:1;
  width:100%;
  height:100%;
  padding:0 16px;
  border:0;
  outline:0;
  background:transparent;
  color:#222;
  font-size:13px;
}

.header-search input::placeholder{
  color:#777;
}

.header-search button{
  width:52px;
  height:100%;
  border:0;
  background:transparent;
  color:#333;
  font-size:23px;
  cursor:pointer;
}

.header-search button:hover{
  background:#e9e9eb;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:22px;
  margin-left:auto;
}

.header-action,
.header-cart{
  display:flex;
  align-items:center;
  gap:8px;
  color:#333;
  text-decoration:none;
  white-space:nowrap;
  transition:opacity .2s ease;
}

.header-action:hover,
.header-cart:hover{
  opacity:.72;
}

.header-action small,
.header-cart small{
  display:block;
  margin-bottom:1px;
  color:#777;
  font-size:10px;
  line-height:1.25;
}

.header-action strong,
.header-cart strong{
  display:block;
  color:#222;
  font-size:12px;
  font-weight:650;
  line-height:1.25;
}

.action-icon,
.cart-icon{
  width:31px;
  height:31px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  border-radius:50%;
  background:#f1f1f3;
  color:#222;
  font-size:15px;
}

.cart-icon{
  background:#111;
  color:#fff;
  font-size:14px;
}

.category-bar{
  min-height:46px;
  width:100%;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  overflow-x:auto;
  background:#fff;
  border-top:1px solid #f1f1f1;
  scrollbar-width:none;
}

.category-bar::-webkit-scrollbar{
  display:none;
}

.category-bar a{
  position:relative;
  padding:15px 0;
  color:#444;
  font-size:12px;
  font-weight:600;
  white-space:nowrap;
  text-decoration:none;
  transition:color .2s ease;
}

.category-bar a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:9px;
  height:2px;
  border-radius:2px;
  background:#111;
  transform:scaleX(0);
  transition:transform .2s ease;
}

.category-bar a:hover{
  color:#111;
}

.category-bar a:hover::after{
  transform:scaleX(1);
}

.category-all{
  display:flex;
  align-items:center;
  gap:7px;
  color:#111 !important;
}

.category-offer{
  color:#d71920 !important;
}

.category-offer::after{
  background:#d71920 !important;
}

@media(max-width:1000px){
  .header-main{gap:20px}
  .header-actions{gap:12px}
  .header-action:first-child{display:none}
  .category-bar{justify-content:flex-start}
}

@media(max-width:700px){
  .header-main{
    min-height:68px;
    padding:0 14px;
    gap:12px;
  }

  .site-logo img{
    width:36px;
    height:36px;
  }

  .site-logo > span{
    font-size:17px;
  }

  .header-search{
    height:40px;
  }

  .header-search button{
    width:42px;
  }

  .header-action{
    display:none;
  }

  .header-cart span:not(.cart-icon){
    display:none;
  }

  .category-bar{
    min-height:42px;
    justify-content:flex-start;
    gap:24px;
    padding:0 15px;
  }

  .category-bar a{
    padding:13px 0;
    font-size:11px;
  }
}

@media(max-width:430px){
  .header-main{gap:8px}

  .site-logo > span{
    display:none;
  }

  .site-logo img{
    width:35px;
    height:35px;
  }

  .category-bar{
    gap:20px;
  }
}

/* =========================================================
   iPhoneCenter — HERO PRINCIPAL FINAL
   ========================================================= */

.store-hero{
  position:relative;
  isolation:isolate;
  width:100%;
  max-width:1500px;
  min-height:620px;
  margin:0 auto;
  padding:70px 7%;
  box-sizing:border-box;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,1fr);
  align-items:center;
  gap:30px;
  overflow:hidden;
  background:
    radial-gradient(circle at 78% 42%,rgba(0,122,255,.12),transparent 31%),
    linear-gradient(180deg,#fff 0%,#f5f5f7 100%);
}

.store-hero::before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  right:-180px;
  top:40px;
  border-radius:50%;
  background:rgba(0,122,255,.07);
  filter:blur(12px);
  z-index:-1;
}

.hero-content{
  position:relative;
  z-index:3;
  max-width:570px;
}

.hero-label{
  display:inline-flex;
  align-items:center;
  padding:7px 13px;
  margin-bottom:22px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
}

.hero-content h1{
  margin:0 0 22px;
  color:#111;
  font-size:clamp(46px,6vw,78px);
  line-height:.98;
  letter-spacing:-.055em;
  font-weight:800;
  text-wrap:balance;
}

.hero-content h1 strong{
  color:#0071e3;
}

.hero-subtitle{
  max-width:500px;
  margin:0 0 20px;
  color:#555;
  font-size:19px;
  line-height:1.55;
}

.hero-offer{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:0 16px;
  margin-bottom:28px;
  box-sizing:border-box;
  border-radius:999px;
  background:#fff;
  border:1px solid #e2e2e5;
  box-shadow:0 7px 25px rgba(0,0,0,.05);
}

.hero-offer span{
  color:#777;
  font-size:13px;
}

.hero-offer strong{
  color:#111;
  font-size:17px;
}

.hero-offer small{
  color:#777;
  font-size:11px;
}

.hero-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}

.hero-product{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}

.hero-glow{
  position:absolute;
  width:390px;
  height:390px;
  border-radius:50%;
  background:#dbeafe;
  filter:blur(25px);
  opacity:.8;
}

.hero-phone{
  position:relative;
  z-index:2;
  width:min(620px,100%);
  height:auto;
  max-height:520px;
  object-fit:contain;
  transform:scale(1.08);
  filter:drop-shadow(0 30px 35px rgba(0,0,0,.20));
  transition:transform .3s ease;
}

.hero-product:hover .hero-phone{
  transform:scale(1.11);
}

.hero-label-floating{
  position:absolute;
  top:70px;
  right:8%;
  z-index:4;
}

@media(max-width:1000px){
  .store-hero{
    grid-template-columns:minmax(0,1fr) minmax(340px,45%);
    padding-left:5%;
    padding-right:5%;
  }

  .hero-product{
    min-height:460px;
  }

  .hero-phone{
    max-height:460px;
  }

  .hero-offer small{
    display:none;
  }
}

@media(max-width:760px){
  .store-hero{
    min-height:auto;
    grid-template-columns:1fr;
    gap:15px;
    padding:45px 20px 55px;
    text-align:center;
  }

  .store-hero::before{
    width:350px;
    height:350px;
    right:-170px;
    top:300px;
  }

  .hero-content{
    max-width:none;
  }

  .hero-content h1{
    font-size:48px;
  }

  .hero-subtitle{
    margin-left:auto;
    margin-right:auto;
    font-size:16px;
  }

  .hero-offer{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-product{
    min-height:360px;
  }

  .hero-phone{
    width:100%;
    max-width:520px;
    max-height:360px;
    transform:scale(1.04);
  }

  .hero-product:hover .hero-phone{
    transform:scale(1.06);
  }

  .hero-label-floating{
    top:20px;
    right:15%;
  }

  .hero-phone::before{
    width:290px;
    height:290px;
  }
}

@media(max-width:430px){
  .store-hero{
    padding-left:15px;
    padding-right:15px;
  }

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

  .hero-offer{
    gap:6px;
    padding:0 12px;
  }

  .hero-offer strong{
    font-size:15px;
  }

  .hero-actions a{
    width:100%;
  }

  .hero-product{
    min-height:320px;
  }

  .hero-phone{
    max-height:320px;
  }
}


/* =========================================================
   BENEFÍCIOS — CARROSSEL HORIZONTAL
   ========================================================= */

.benefits-bar{
  display:flex !important;
  flex-wrap:nowrap !important;
  gap:14px !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  padding:18px 20px !important;
  max-width:1200px !important;
  margin:0 auto !important;
  box-sizing:border-box;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.benefits-bar::-webkit-scrollbar{
  display:none;
}

.benefit{
  flex:0 0 calc(25% - 11px) !important;
  min-width:240px !important;
  min-height:105px !important;
  box-sizing:border-box;
  border-right:1px solid #e3e3e6 !important;
  border-bottom:1px solid #e3e3e6 !important;
  scroll-snap-align:start;
}

@media(max-width:900px){
  .benefit{
    flex:0 0 285px !important;
  }
}

@media(max-width:520px){
  .benefits-bar{
    margin:0 !important;
    padding:14px 15px !important;
    gap:12px !important;
  }

  .benefit{
    flex:0 0 285px !important;
    min-height:95px !important;
  }
}


/* AJUSTE FINAL — CARROSSEL DOS CARDS DE CONFIANÇA */
.trust-grid{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  width:100% !important;
  max-width:100% !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  gap:16px !important;
  padding:10px 20px 20px !important;
  margin:0 !important;
  box-sizing:border-box !important;
  scroll-snap-type:x mandatory !important;
  -webkit-overflow-scrolling:touch !important;
  scrollbar-width:none !important;
}

.trust-grid::-webkit-scrollbar{
  display:none !important;
}

.trust-card{
  display:block !important;
  flex:0 0 300px !important;
  width:300px !important;
  min-width:300px !important;
  max-width:300px !important;
  box-sizing:border-box !important;
  scroll-snap-align:start !important;
}

@media(max-width:430px){
  .trust-grid{
    gap:12px !important;
    padding-left:15px !important;
    padding-right:15px !important;
  }

  .trust-card{
    flex:0 0 285px !important;
    width:285px !important;
    min-width:285px !important;
    max-width:285px !important;
  }
}

/* =========================================================
   PRODUTOS — CARROSSEL HORIZONTAL
   ========================================================= */

#produtos .cards{
  display:flex !important;
  flex-wrap:nowrap !important;
  flex-direction:row !important;
  gap:18px !important;
  width:100% !important;
  max-width:100% !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  padding:8px 20px 24px !important;
  margin:0 !important;
  box-sizing:border-box !important;
  scroll-snap-type:x mandatory !important;
  -webkit-overflow-scrolling:touch !important;
  scrollbar-width:none !important;
}

#produtos .cards::-webkit-scrollbar{
  display:none !important;
}

#produtos .product-card{
  flex:0 0 285px !important;
  width:285px !important;
  min-width:285px !important;
  max-width:285px !important;
  box-sizing:border-box !important;
  scroll-snap-align:start !important;
}

@media(max-width:600px){
  #produtos .cards{
    gap:14px !important;
    padding-left:15px !important;
    padding-right:15px !important;
  }

  #produtos .product-card{
    flex:0 0 285px !important;
    width:285px !important;
    min-width:285px !important;
    max-width:285px !important;
  }
}

/* =========================================================
   DESTAQUES — CARROSSEL DEFINITIVO
   ========================================================= */

.featured-section #produtos{
  width:100% !important;
  max-width:100% !important;
  overflow:hidden !important;
  box-sizing:border-box !important;
}

.featured-section #produtos .cards{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:stretch !important;
  justify-content:flex-start !important;
  gap:18px !important;
  width:100% !important;
  max-width:none !important;
  height:auto !important;
  overflow-x:scroll !important;
  overflow-y:hidden !important;
  box-sizing:border-box !important;
  padding:10px 20px 25px !important;
  margin:0 !important;
  scroll-snap-type:x mandatory !important;
  -webkit-overflow-scrolling:touch !important;
  scrollbar-width:none !important;
}

.featured-section #produtos .cards::-webkit-scrollbar{
  display:none !important;
}

.featured-section #produtos .product-card{
  display:flex !important;
  flex-direction:column !important;
  flex:0 0 285px !important;
  width:285px !important;
  min-width:285px !important;
  max-width:285px !important;
  margin:0 !important;
  box-sizing:border-box !important;
  scroll-snap-align:start !important;
}

@media(max-width:600px){
  .featured-section #produtos .cards{
    gap:14px !important;
    padding-left:15px !important;
    padding-right:15px !important;
  }

  .featured-section #produtos .product-card{
    flex:0 0 285px !important;
    width:285px !important;
    min-width:285px !important;
    max-width:285px !important;
  }
}

/* ZOOM SUAVE NO PRIMEIRO BANNER */
.home-banner-image img{
  transform:scale(1.04);
  transform-origin:center center;
}

/* ZOOM UM POUCO MAIOR NO PRIMEIRO BANNER */
.home-banner-image img{
  transform:scale(1.07) !important;
  transform-origin:center center;
}

/* PRÉVIA AUTOMÁTICA DA PESQUISA */
.header-search{
  position:relative;
}

.search-preview{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  right:0;
  z-index:2000;
  max-height:360px;
  overflow-y:auto;
  background:#fff;
  border:1px solid #e4e4e7;
  border-radius:12px;
  box-shadow:0 14px 35px rgba(0,0,0,.14);
}

.search-preview[hidden]{
  display:none !important;
}

.search-preview-item{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  padding:11px 14px;
  border:0;
  border-bottom:1px solid #f0f0f2;
  background:#fff;
  text-align:left;
  cursor:pointer;
}

.search-preview-item:last-child{
  border-bottom:0;
}

.search-preview-item:hover{
  background:#f7f7f9;
}

.search-preview-item img{
  width:48px;
  height:48px;
  flex:0 0 48px;
  object-fit:contain;
}

.search-preview-details{
  display:flex;
  flex-direction:column;
  gap:5px;
  min-width:0;
}

.search-preview-details strong{
  color:#171717;
  font-size:13px;
}

.search-preview-details small{
  color:#666;
  font-size:12px;
}

.search-preview-empty{
  padding:16px;
  color:#666;
  font-size:13px;
}

@media(max-width:700px){
  .search-preview{
    max-height:300px;
  }
}

/* CORREÇÃO: LISTA DA PESQUISA FORA DA ÁREA QUE A CORTAVA */
.header-search{
  overflow:visible !important;
}

.header-main{
  position:relative;
}

.header-main > .search-preview{
  position:absolute !important;
  z-index:3000 !important;
  max-height:360px;
  overflow-y:auto;
}

/* PRÉVIAS: TODOS OS RESULTADOS COM ROLAGEM */
.header-main > .search-preview{
  max-height: min(70vh, 480px) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* CARROSSEL DE PRODUTOS - 4 POR VEZ */
#produtos .cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 5px 2px 18px;
  scrollbar-width: none;
}

#produtos .cards::-webkit-scrollbar {
  display: none;
}

#produtos .product-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

@media (max-width: 1000px) {
  #produtos .product-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 600px) {
  #produtos .product-card {
    flex: 0 0 85%;
  }
}

/* Ajuste do enquadramento da imagem do banner */
.promo-device img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  transform:rotate(-5deg);
}


/* Enquadramento final da imagem do banner */
.promo-device{
  right:20px;
  bottom:-20px;
  width:430px;
  height:470px;
  align-items:center;
  justify-content:center;
}

.promo-device img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  transform:none;
  filter:drop-shadow(0 25px 30px rgba(0,0,0,.40));
}

@media(max-width:800px){
  .promo-device{
    width:310px;
    height:350px;
    right:50%;
    bottom:-25px;
    transform:translateX(50%);
  }

  .promo-device img{
    width:100%;
    height:100%;
    object-fit:contain;
    transform:none;
  }
}


/* AJUSTE DEFINITIVO — PRODUTOS SEM CARROSSEL */
#produtos .cards {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  flex-wrap: wrap !important;
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
  justify-content: initial !important;
}

#produtos .cards > * {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  flex: initial !important;
  scroll-snap-align: none !important;
}

@media (max-width: 360px) {
  #produtos .cards {
    gap: 10px !important;
  }
}

@media (min-width: 768px) {
  #produtos .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (min-width: 1100px) {
  #produtos .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* CORREÇÃO FINAL — REMOVER CARROSSEL DO CATÁLOGO E DESTAQUES */

#produtos .cards,
.featured-section #produtos .cards {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  flex-direction: initial !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  justify-content: initial !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  padding: 10px 12px 24px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  scroll-snap-type: none !important;
}

#produtos .product-card,
.featured-section #produtos .product-card {
  display: flex !important;
  flex-direction: column !important;
  flex: initial !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  scroll-snap-align: none !important;
}

#produtos .cards::-webkit-scrollbar,
.featured-section #produtos .cards::-webkit-scrollbar {
  display: none !important;
}

@media (min-width: 768px) {
  #produtos .cards,
  .featured-section #produtos .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (min-width: 1100px) {
  #produtos .cards,
  .featured-section #produtos .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

