
      /* 🔒 Bloqueia scroll horizontal no iOS */
body {
  overscroll-behavior-x: contain; /* Chrome/Edge/Opera */
  -webkit-overflow-scrolling: touch;
}

/* Para fallback em Safari antigo */
html {
  overflow-x: hidden;
}
      /* Detecta iPhones (especialmente modelos com tela pequena) */
    @media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
        .lista-molduras {
            margin-left: -7% !important;
        }
    }

    /* iPhone 6/7/8 Plus */
    @media only screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) {
        .lista-molduras {
            margin-left: -7% !important;
        }
    }

    /* iPhone X, XS */
    @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
        .lista-molduras {
            margin-left: -7% !important;
        }
    }

    /* iPhone XR */
    @media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
        .lista-molduras {
            margin-left: -5px !important;
        }
    }

    /* iPhone XS Max, iPhone 11 Pro Max */
    @media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) {
        .lista-molduras {
            margin-left: -5px !important;
        }
    }

    /* iPhone 12, 13, 14 mini */
    @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
        .lista-molduras {
            margin-left: -5px !important;
        }
    }

    /* iPhone 12, 13, 14 Pro Max */
    @media only screen and (device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
        .lista-molduras {
            margin-left: -5px !important;
        }
    }

    /* Esconde o método que NÃO está ativo */
    .mp-payment-methods-list .pix-container:not(.ativo),
    .mp-payment-methods-list .credit-card-container:not(.ativo) {
        display: none !important;
    }

    /* Força o método ativo a abrir expandido */
    .mp-payment-method-row.ativo+.mp-payment-method-content,
    .mp-payment-method-row.ativo .mp-payment-method-content {
        display: block !important;
        height: auto !important;
    }


/* Modo busca: exatamente 2 colunas */
#listar_telas.modo-busca {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: 15px !important;
    padding: 0 10px !important;
    margin-top: 60px !important;
    max-width: 100% !important;
    overflow-x: hidden;
}

/* Em celulares pequenos, força 1 coluna */
@media (max-width: 600px) {
    #listar_telas.modo-busca {
        grid-template-columns: 1fr !important;
    }
    #listar_telas {
        margin-top: 10px !important;
    }
}

/* Garante que os cards ocupem toda a célula */
#listar_telas.modo-busca .product-card {
    width: 100% !important;
    max-width: none !important;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}


#paymentBricks {
  position: relative;
  z-index: 99999 !important;
}

.tab-button {
  flex: 1;
  padding: 14px;
  background: #f9f7f4;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-button.active {
  background: #6c4b2f;
  color: white;
}
.tab-button i { font-size: 16px; }

@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes slideIn { from {transform:translateX(20px); opacity:0;} to {transform:translateX(0); opacity:1;} }

.input-checkout {
  width:100%;
  padding:12px 14px;
  margin-bottom:12px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:15px;
  outline:none;
  transition:all .2s;
}
.input-checkout:focus {
  border-color:#6c4b2f;
  box-shadow:0 0 0 2px rgba(108,75,47,0.1);
}
.btn-principal {
  width:100%;
  background:#6c4b2f;
  color:white;
  border:none;
  border-radius:8px;
  padding:14px;
  font-size:16px;
  font-weight:600;
  transition:background .2s;
}
.btn-principal:hover { background:#5a3e27; cursor:pointer; }
.btn-secundario {
  flex:1;
  background:#f1ece7;
  color:#6c4b2f;
  border:none;
  border-radius:8px;
  padding:14px;
  font-size:15px;
  font-weight:600;
  transition:background .2s;
}
.btn-secundario:hover { background:#e8dfd7; cursor:pointer; }
/* ✅ Melhora scroll em dispositivos com teclado virtual */
/* CORREÇÃO DO SCROLL E TECLADO NO MOBILE */
#modal-checkout-etapas {
    display: none; /* Mantém oculto inicialmente */
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    justify-content: center;
    align-items: flex-start; /* Muda de center para flex-start para não cortar o topo */
    overflow-y: auto; /* Permite rolar a tela inteira */
    padding-top: 20px;
    padding-bottom: 80px; /* Espaço extra para o teclado não cobrir o botão */
}

#modal-checkout-etapas > div {
    margin: 0 auto;
    position: relative;
    max-height: none; /* Remove limite de altura para deixar crescer */
    margin-bottom: 50px; /* Garante que o final do modal suba */
}
/* Garante que o conteúdo do modal tenha espaço extra para não ser escondido pelo teclado (iOS principalmente) */
@media (max-height: 700px) {
  #checkout-container {
    min-height: 120vh; /* força scroll no modal mesmo com teclado aberto */
  }
}
#modal-checkout-etapas > div {
  max-height: 90vh;
  overflow-y: auto;
}
#checkout-container {
  overflow: visible; /* evita clipping */
}


@keyframes girar {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#seletor-molduras {
  scroll-behavior: smooth;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: none;
  gap: 16px;
  padding: 12px 0 20px 0;
  margin: 16px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* suaviza scroll no iOS */
  scrollbar-width: thin; /* Firefox */

}
#seletor-moldurasp {
  scroll-behavior: smooth;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: none;
  gap: 16px;
  padding: 12px 0 20px 0;
  margin: 16px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* suaviza scroll no iOS */
  scrollbar-width: thin; /* Firefox */

}
#seletor-moldurasm {
  scroll-behavior: smooth;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding: 12px 0 20px 0;
  margin: 16px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* suaviza scroll no iOS */
  scrollbar-width: thin; /* Firefox */

}
#seletor-moldurasg {
  scroll-behavior: smooth;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding: 12px 0 20px 0;
  margin: 16px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* suaviza scroll no iOS */
  scrollbar-width: thin; /* Firefox */

}

#seletor-molduras::-webkit-scrollbar {
  height: 6px;
}
#seletor-moldurasp::-webkit-scrollbar {
  height: 6px;
}
#seletor-moldurasm::-webkit-scrollbar {
  height: 6px;
}
#seletor-moldurasg::-webkit-scrollbar {
  height: 6px;
}


#seletor-molduras::-webkit-scrollbar-thumb {
  background: #c9b794;
  border-radius: 3px;
}
#seletor-moldurasp::-webkit-scrollbar-thumb {
  background: #c9b794;
  border-radius: 3px;
}
#seletor-moldurasm::-webkit-scrollbar-thumb {
  background: #c9b794;
  border-radius: 3px;
}
#seletor-moldurasg::-webkit-scrollbar-thumb {
  background: #c9b794;
  border-radius: 3px;
}


#seletor-molduras::-webkit-scrollbar-track {
  background: transparent;
}
#seletor-moldurasp::-webkit-scrollbar-track {
  background: transparent;
}
#seletor-moldurasm::-webkit-scrollbar-track {
  background: transparent;
}
#seletor-moldurasg::-webkit-scrollbar-track {
  background: transparent;
}

#seletor-molduras .moldura-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: transform 0.25s ease, opacity 0.2s;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid transparent; /* para não pular layout ao ativar */
}

#seletor-moldurasp .moldura-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: transform 0.25s ease, opacity 0.2s;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid transparent; /* para não pular layout ao ativar */
}

#seletor-moldurasm .moldura-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: transform 0.25s ease, opacity 0.2s;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid transparent; /* para não pular layout ao ativar */
}

#seletor-moldurasg .moldura-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: transform 0.25s ease, opacity 0.2s;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid transparent; /* para não pular layout ao ativar */
}

#seletor-molduras .moldura-item:hover {
  transform: scale(1.04);
  background: #f9f7f4;
}

#seletor-moldurasp .moldura-item:hover {
  transform: scale(1.04);
  background: #f9f7f4;
}

#seletor-moldurasm .moldura-item:hover {
  transform: scale(1.04);
  background: #f9f7f4;
}

#seletor-moldurasg .moldura-item:hover {
  transform: scale(1.04);
  background: #f9f7f4;
}

#seletor-molduras .moldura-item.ativo {
  border-color: #00b140;
}
#seletor-moldurasp .moldura-item.ativo {
  border-color: #00b140;
}
#seletor-moldurasm .moldura-item.ativo {
  border-color: #00b140;
}
#seletor-moldurasg .moldura-item.ativo {
  border-color: #00b140;
}

#seletor-molduras .moldura-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}
#seletor-moldurasp .moldura-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}
#seletor-moldurasm .moldura-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}
#seletor-moldurasg .moldura-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}

#seletor-molduras .moldura-nome {
  font-size: 12px;
  font-weight: 600;
  color: #6c4b2f;
  text-align: center;
  line-height: 1.3;
  max-width: 90px;
}
#seletor-moldurasp .moldura-nome {
  font-size: 12px;
  font-weight: 600;
  color: #6c4b2f;
  text-align: center;
  line-height: 1.3;
  max-width: 90px;
}
#seletor-moldurasm .moldura-nome {
  font-size: 12px;
  font-weight: 600;
  color: #6c4b2f;
  text-align: center;
  line-height: 1.3;
  max-width: 90px;
}
#seletor-moldurasg .moldura-nome {
  font-size: 12px;
  font-weight: 600;
  color: #6c4b2f;
  text-align: center;
  line-height: 1.3;
  max-width: 90px;
}

#seletor-molduras .moldura-largura {
  font-size: 10px;
  color: #8b7e6a;
  margin-top: 2px;
}
#seletor-moldurasp .moldura-largura {
  font-size: 10px;
  color: #8b7e6a;
  margin-top: 2px;
}
#seletor-moldurasm .moldura-largura {
  font-size: 10px;
  color: #8b7e6a;
  margin-top: 2px;
}
#seletor-moldurasg .moldura-largura {
  font-size: 10px;
  color: #8b7e6a;
  margin-top: 2px;
}

#seletor-molduras .ativo .moldura-nome {
  color: #5a4632;
  font-weight: bold;
}
#seletor-moldurasp .ativo .moldura-nome {
  color: #5a4632;
  font-weight: bold;
}
#seletor-moldurasm .ativo .moldura-nome {
  color: #5a4632;
  font-weight: bold;
}
#seletor-moldurasg .ativo .moldura-nome {
  color: #5a4632;
  font-weight: bold;
}

 .hero-banner {
    position: relative;
    width: 100%;
    height: 30vh;
    /* ocupa 30% da altura da tela */
    max-height: 320px;
    /* não passa disso no desktop */
    min-height: 150px;
    /* não fica minúsculo no celular */
    overflow: hidden;
}

.hero-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}


       /* --- Rodapé: Coleções Premium Barroquina --- */
.footer-catalogo {
  background: #fafafa;
  padding: 3rem 1rem;
  border-top: 1px solid #eee;
  font-family: 'Georgia', serif;
}
.footer-catalogo .container {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-catalogo__title {
  text-align: center;
  font-size: 1.8rem;
  color: #1a365d;
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.footer-catalogo__intro {
  text-align: center;
  font-size: 1.05rem;
  color: #5a6c80;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.footer-catalogo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-catalogo__item {
  padding: 1.25rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  border-left: 4px solid #d4af37; /* dourado Barroquina */
}
.footer-catalogo__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  border-left-color: #c19a2d;
}

.footer-catalogo__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.footer-catalogo__titulo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 0.6rem;
  line-height: 1.35;
}

.footer-catalogo__descricao {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA Final */
.footer-catalogo__cta {
  text-align: center;
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn--outline {
  border: 2px solid #1a365d;
  color: #1a365d;
  background: transparent;
}
.btn--outline:hover {
  background: #1a365d;
  color: white;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-catalogo {
    padding: 2rem 1rem;
  }
  .footer-catalogo__title {
    font-size: 1.5rem;
  }
  .footer-catalogo__grid {
    grid-template-columns: 1fr;
  }
}
   @keyframes pulse {
                0% {
                    transform: scale(1);
                }

                50% {
                    transform: scale(1.05);
                }

                100% {
                    transform: scale(1);
                }
            }


            
.cards-container {
  display: grid;
  /* Desktop: exatamente 4 colunas */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5px;
}

.card-promo {
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  background: #fff;
    margin-top: 10px;
    margin-right: -1px;
  /* Remove max-width e width fixos — deixa o grid controlar */
}

.card-promo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.card-promo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}

.card-text {
  padding: 10px;
  color: #555;
  line-height: 1.3;
  font-size: 12px;
}

/* Tablet: 3 colunas */
@media (max-width: 1023px) {
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Celular: 2 colunas */
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 8px;
  }
}

/* Celular pequeno: ainda 2 colunas, mas cards um pouco menores */
@media (max-width: 480px) {
  .cards-container {
    gap: 12px;
    padding: 0 6px;
  }
}

  /* --- Rodapé: Coleções Premium Barroquina --- */
.footer-catalogo {
  background: #fafafa;
  padding: 3rem 1rem;
  border-top: 1px solid #eee;
  font-family: 'Georgia', serif;
}
.footer-catalogo .container {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-catalogo__title {
  text-align: center;
  font-size: 1.8rem;
  color: #1a365d;
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.footer-catalogo__intro {
  text-align: center;
  font-size: 1.05rem;
  color: #5a6c80;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.footer-catalogo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-catalogo__item {
  padding: 1.25rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  border-left: 4px solid #d4af37; /* dourado Barroquina */
}
.footer-catalogo__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  border-left-color: #c19a2d;
}

.footer-catalogo__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.footer-catalogo__titulo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 0.6rem;
  line-height: 1.35;
}

.footer-catalogo__descricao {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA Final */
.footer-catalogo__cta {
  text-align: center;
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn--outline {
  border: 2px solid #1a365d;
  color: #1a365d;
  background: transparent;
}
.btn--outline:hover {
  background: #1a365d;
  color: white;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-catalogo {
    padding: 2rem 1rem;
  }
  .footer-catalogo__title {
    font-size: 1.5rem;
  }
  .footer-catalogo__grid {
    grid-template-columns: 1fr;
  }
}


.cart-summary-container {
  background: linear-gradient(180deg, #fffdf9, #f9f6f1);
  border: 1px solid #e8dfd3;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 40px auto;
  color: #3e2c1b;
  position: relative;
  transition: all 0.3s ease;
  margin-top: -20px;
}

.cart-summary-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #d8c09b, #fffaf0);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cart-header {
  text-align: center;
  margin-bottom: 25px;
}

.cart-header h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #6c4b2f;
  font-weight: 600;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
  color: #4d3b2c;
}

.cart-line.total {
  font-size: 17px;
  font-weight: 600;
  padding-top: 12px;
  color: #3b2a1a;
}

.cart-line.avista span:last-child {
  font-size: 21px;
  font-weight: 700;
  color: #007c45;
}

.cart-line.parcelas span:last-child {
  font-size: 18px;
  font-weight: 600;
  color: #3b2a1a;
}



/* Texto de segurança */
.checkout-security {
  text-align: center;
  font-size: 12px;
  color: #8c7a67;
  margin-top: 14px;
  font-family: 'Segoe UI', sans-serif;
}

.checkout-security i {
  color: #007c45;
  margin-right: 4px;
}

/* Selo de arte */
.art-touch {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
  font-style: italic;
  color: #6e5a46;
  border-top: 1px dashed #d5c6b3;
  padding-top: 12px;
}

.entrega-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 22px 20px;
    max-width: 600px;            /* deixa elegante como card */
    margin: 0 auto 25px auto;    /* centraliza corretamente */
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    font-family: 'Inter', sans-serif;
}

.entrega-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.entrega-header i {
    font-size: 17px;
    color: #6d5f4c; /* marrom sofisticado */
}

.entrega-header span {
    font-size: 15px;
    font-weight: 600;
    color: #4a4136;
}

.entrega-dados {
    font-size: 14.5px;
    line-height: 1.55;
    color: #4c453c;
}

/* WhatsApp */
.entrega-dados i {
    font-size: 15px;
    margin-right: 4px;
}
/* --- ESTILO ALTO PADRÃO PARA O CARRINHO --- */

.cart-summary-professional {
    background: #fff;
    /* Borda super fina para definição sutil */
    border: 1px solid #f5f5f5; 
    
    /* A MÁGICA: Sombra grande, mas super transparente */
    /* 0 deslocamento, 25px de blur, -5px de spread (encolhe a sombra), cor preta a 6% */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
    font-family: 'Segoe UI', sans-serif;
    position: relative; /* Garante que fique acima de outros elementos */
}

/* Linhas do resumo mais espaçadas e limpas */
.checkout-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

/* Total "De" (Risco) - Mais discreto */
.checkout-line.total span:last-child {
    font-size: 14px;
    color: #999;
  
}

/* 1. Preço "De" (Risco) - Um pouco mais legível, mas discreto */
.checkout-line.total span:last-child {
    font-size: 15px;       /* Era 14px */
    color: #999;
   
    font-weight: 400;
}

/* 2. O GRANDE DESTAQUE: Preço À Vista */
.checkout-line.avista span:last-child {
    font-size: 36px;       /* BEM GRANDE (Era 26px) */
    font-weight: 500;      /* Peso médio (não é negrito estourado, é elegante) */
    color: #007a5a;        /* Verde da sua marca */
    line-height: 1;        /* Remove espaço extra em cima/baixo */
    letter-spacing: -1px;  /* Junta levemente os números (toque moderno) */
    margin-top: 5px;
}

/* 3. Parcelas - Aumentar um pouquinho para leitura fácil */
.checkout-line.parcelas span {
    font-size: 14px;       /* Tamanho base */
    color: #666;
}
.checkout-line.parcelas strong {
    font-size: 15px;       /* Valor da parcela um pouco maior */
    color: #444;
    font-weight: 600;
}

/* Parcelamento - Texto de apoio */
.checkout-line.parcelas {
    font-size: 13px;
    color: #888;
    margin-top: -5px;
}

/* Mensagem de Economia - Minimalista */
.vip-savings {
    background-color: #f9fdfa;
    color: #007a5a;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    border: 1px solid #e0f0e5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Frete - Mudança para "Entrega Segura" */
.frete-premium {
    font-size: 13px;
    color: #555;
    background: #f7f4ed; /* Bege bem clarinho da marca */
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



  .payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
  }

  .pay-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .pay-item:hover {
    background: #f9f9f9;
    border-color: #bbb;
  }
  .pay-item.selected {
    border: 2px solid #6c4b2f;
    background: #fdf9f5;
  }

  .pay-info {
    flex: 1;
    margin-right: 12px;
  }

  .pay-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px;
  }

  .pay-value {
    font-size: 18px;
    font-weight: 700;
    color: #6c4b2f;
    margin: 0 0 4px;
  }

  .pay-benefit {
    font-size: 12px;
    color: #6c4b2f;
    opacity: 0.9;
  }

  .pay-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .pay-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #6c4b2f;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .pay-item.selected .pay-radio::after {
    opacity: 1;
  }

  .pay-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #6c4b2f;
    color: white;
    margin-top: 16px;
    transition: background 0.2s;
  }
  .pay-btn:hover {
    background: #5a3e28;
  }

  @media (max-width: 600px) {
    .payment-options {
      max-width: 100%;
      padding: 0 12px;
    }
    .pay-item {
      padding: 14px;
    }
  }
  @keyframes pulseBtn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
  
/* 1. Remove o preenchimento excessivo do Modal Pai */

        /* 2. Expande o container do resumo de preços */
        .cart-summary-professional {
            width: 100% !important;
            margin: 0 !important;
            padding: 15px 0px !important; /* Remove padding lateral interno */
            box-shadow: none !important; /* Remove sombra para limpar visual no mobile */
            border: none !important;
        }

        /* 3. Expande o Bloco VIP (onde estão os preços) */
        #comvip {
            width: 97% !important;
            max-width: 97% !important;
            padding: 5px 0px !important; /* Dá um respiro mínimo */
            margin: 0 !important;
            border-radius: 0 !important;
            margin-left: 4px;
        }

        /* 5. Aumenta a fonte dos preços para aproveitar o espaço novo */
        #cart-avistavip {
            font-size: 22px !important; /* Aumenta o preço Pix */
        }

  

    /* 1. ACELERADOR: Transforma os botões Marrons do Modal em VERDE VIBRANTE */
    #modal-checkout-etapas .btn-principal,
    #modal-checkout-etapas button[onclick="confirmarEnderecoEAvancar()"] {
        background: linear-gradient(135deg, #00b140 0%, #008f33 100%) !important;
        color: #fff !important;
        font-weight: 700 !important;
        box-shadow: 0 4px 15px rgba(0, 177, 64, 0.3) !important;
        border: none !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* 2. DERRUBAR O MURO: Compacta o bloco de endereço na tela de pagamento */
    .entrega-box-minimal {
        background: #fff !important; /* Fundo Branco (mais limpo) */
        padding: 8px 12px !important; /* Menos espaço interno */
        margin: 10px 0 15px 0 !important;
        border-radius: 6px !important;
        text-align: left !important;
    }
    #dados-entrega {
        font-size: 13px !important;
        color: #555 !important;
        line-height: 1.3 !important;
        margin-top: 4px !important;
    }
    /* Deixa o ícone e título na mesma linha para economizar altura */
    .entrega-box-minimal i, 
    .entrega-box-minimal strong {
        display: inline-block;
        color: #6c4b2f;
    }

    /* 3. NEUTRALIZAR O ALERTA: Muda a cor da parcela de Laranja para Cinza/Preto */
    .checkout-section .parcelas, 
    .checkout-section #cart-parcelavip {
        color: #333 !important; /* Cinza escuro profissional */
        font-weight: 600 !important;
    }
    
    /* Extra: Garante que o input de cupom/cep não pareça desabilitado */
    #checkout-cep, #checkout-numero {
        background-color: #fff !important;
    }