/* ================================
   BASE / RESET
================================ */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Barlow', sans-serif;
  background: #111;
  color: #eaeaea;
}

/* ================================
   HEADER (mantido estilo escuro)
================================ */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: #111;
  border-bottom: 1px solid #1e1e1e;
}

.h-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.h-logo-img {
  height: 40px;
}

.h-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.h-logo-top {
  font-size: 13px;
  opacity: .7;
}

.h-logo-bot {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}

.h-center .h-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.h-badge {
  font-size: 12px;
  background: #1e1e1e;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .5px;
}

/* ================================
   MAIN WRAP
================================ */
.wrap {
  width: 95%;
  max-width: 1400px;
  margin: 30px auto 60px;
}

.logo-area {
  text-align: center;
  margin-bottom: 20px;
}
.page-official .logo-area-temp {
  text-align: center;
  margin-bottom: 20px;
}

.main-logo {
  max-width: 160px;
}
.page-official .main-logo-temp {
  max-width: 260px;
}
.page-official .main-text{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-official .main-text h2{
  margin: 0;
}
.gold-div {
  height: 1px;
  background: linear-gradient(to right, transparent, #c5a347, transparent);
}
.red-div {
  height: 1px;
  background: linear-gradient(to right, transparent, darkred, transparent);
}
.gold-vertical {
  left: 50%;
  position: relative;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #c5a347, transparent);
}

.page-official .countdown {
  --bg: #111; 
  --dot: #c7a64b;
  --dot-off: rgba(255,255,255,.12);
  --radius: 16px;
  --pad: 28px;
  --gap: 14px;

  background: var(--bg);
  border-radius: var(--radius);
  padding: var(--pad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
  font-family: 'Cascadia Mono';
  font-weight: 800;
}

.page-official .countdown::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(circle, var(--dot-off) 1.3px, transparent 1.9px);
  background-size: 8px 8px;
  opacity: .9;
}

.page-official .countdown > * { position: relative; z-index: 1; }

.page-official .countdown__readout{
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  color: #c7a64b;
}

.page-official .countdown__label{
  margin-top: 10px;
  font-size: 1.8rem;
  height: 2.2rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: center;
}

.page-official .countdown--bezel{
  border: 2px solid rgba(0,0,0,.25);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.05)), var(--bg);
}

@media (max-width: 520px){
  .countdown { padding: 20px; }
  .countdown__readout { letter-spacing: .04em; }
}

/* ================================
   PANELS
================================ */
.panel {
  background: #141414;
  border: 1px solid #1f1f1f;
  padding: 25px;
  margin-bottom: 20px;
}

.warnings span{
  font-weight: 800;
}
.warnings a{
  color: #c5a347;
  font-weight: 900;
  font-size: 1.2rem;
  text-decoration: none;
}
.warnings{
  background: rgba(34, 11, 11, 0.397);
  border: 1px solid rgba(36, 24, 24, 0.529);
  border-left: 3px solid red;
  padding: 15px;
  width: 100%;
}
.catalog-panel {
  background: #141414;
  border: 1px solid #1f1f1f;
  padding: 5px;
  margin-bottom: 20px;
}

.panel.full {
  width: 100%;
}
.panel.full-2 {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: flex-start;
}
.send-panel.third{
  width: 28%;
  display: flex;
  flex-direction: column;
}
.panel.two-third{
  width:64%;
}
@media (max-width: 900px){
  .panel.two-third{
    width: 100%;
  }
  .send-panel.third{
    width: 100%;
  }
}
.panel.half {
  width: 46%;
}
.sec-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .7;
}

/* ================================
   RESUMO TOPO
================================ */
.resumo-topo-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.resumo-col {
  display: flex;
  flex-direction: column;
}

.resumo-lbl {
  font-size: 12px;
  opacity: .6;
}

.resumo-val {
  font-size: 18px;
  font-weight: 600;
}

.resumo-col.total .resumo-val {
  font-size: 20px;
  color: #c5a347;
}

/* ================================
   LAYOUT PRINCIPAL
================================ */
.layout-principal {
  display: grid;
  grid-template-columns: 40% 25px 1fr;
  align-items: start;
}

.size-panel {
  position: sticky;
  top: 90px;
}

/* ================================
   TABELA TAMANHOS
================================ */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.tab-btn {
  background: #1b1b1b;
  border: 1px solid #2a2a2a;
  color: #ccc;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 12px;
  transition: .2s;
}

.tab-btn.active {
  background: #c5a347;
  color: #000;
  border-color: #c5a347;
}

.tbl-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th, td {
  border: 1px solid #222;
  padding: 8px 6px;
  text-align: center;
}

thead {
  background: #1b1b1b;
}

.size-table {
  display: none;
}

.size-table.active {
  display: table;
}

/* ================================
   CONFIGURADOR
================================ */
.configurador .field {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 1.1rem;
  margin-bottom: 6px;
  opacity: .85;
}
.field span, .size-panel span{
  font-size: 0.8rem;
  opacity: .6;
}
input,
select,
textarea {
  background: #111;
  border: 1px solid #2a2a2a;
  padding: 8px 10px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.qty-row {
  display: flex;
  align-items: center;
}

.qty-row button {
  width: 32px;
  height: 32px;
  border: none;
  background: #1e1e1e;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.qty-row input {
  width: 60px;
  text-align: center;
}

.extras {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ================================
   SOLICITANTE
================================ */
.grid-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.grid-3 .field{
  width: 100%;
  display: flex;
  margin: 10px;
  align-items: space-between;
  justify-content: space-between;
}

/* ================================
   CARRINHO
================================ */
.carrinho table th,
.carrinho table td {
  text-align: center;
}
.carrinho a{
  color: #e2bf63;
  text-decoration: none;
  font-weight: 600;
}

#cart-total {
  font-weight: 700;
  color: #c5a347;
}

.mobile-cart-body {
  width: 100%;
  padding: 0;
  margin: 0;
}
.mobile-cart-body thead{
  width: 100%;
}
.mobile-cart-body tr{
  width: 100%;
}
.mobile-tbl-wrap table th,
.mobile-tbl-wrap table td {
  text-align: center;
}
.mobile-cart-body a{
  color: #ff1111;
  text-decoration: none;
  font-weight: 600;
}

#mobile-cart-total {
  font-weight: 700;
  color: #ff1111;
}

/* ================================
   BOTÕES
================================ */
.btn {
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  transition: .2s;
}

.btn-gold {
  background: #c5a347;
  color: #000;
}

.btn-gold:hover {
  background: #e2bf63;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #fff;
}

.send-panel {
  text-align: center;
}

#status-bar {
  margin-top: 12px;
  font-size: 14px;
}

.resumo-carrinho-topo {
  padding: 14px 22px;
}
.page-official .resumo-catalogo{
  position: relative;
}
/* scroller */
.page-official .resumo-catalogo .temp-catalog{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content: flex-start;
  flex-wrap:nowrap;

  overflow-x:auto;
  overflow-y:hidden;

  padding: 14px 56px; /* espaço pros botões */
  scroll-behavior:smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;

  cursor: grab;
  user-select: none;
  touch-action: pan-x;
  position: relative;
  z-index: 2; /* acima do fade */
}

.page-official .resumo-catalogo a{
  color: #ededed;
  text-decoration: none;

}

.page-official .resumo-catalogo .temp-catalog > a{
  flex:0 0 auto;
  scroll-snap-align:start;
  position: relative;
  z-index: 3; /* acima de tudo que for overlay */
}

.page-official .resumo-catalogo .temp-catalog.dragging{
  cursor: grabbing;
  scroll-behavior: auto;
}

/* scrollbar (opcional) */
.page-official .resumo-catalogo .temp-catalog::-webkit-scrollbar{ height: 8px; }
.page-official .resumo-catalogo .temp-catalog::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.18); border-radius: 999px; }
.page-official .resumo-catalogo .temp-catalog::-webkit-scrollbar-track{ background: rgba(255,255,255,.06); }

/* botões */
.page-official .resumo-catalogo .catalog-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;

  background: rgba(0,0,0,.55);
  color: #fff;
  display:grid;
  place-items:center;

  z-index: 6; /* acima do fade e itens */
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.page-official .resumo-catalogo .catalog-nav.prev{ left: 10px; }
.page-official .resumo-catalogo .catalog-nav.next{ right: 10px; }

.page-official .resumo-catalogo.is-overflow .catalog-nav{
  opacity: 1;
  pointer-events: auto;
}

.page-official .resumo-catalogo .catalog-nav:active{
  transform: translateY(-50%) scale(.98);
}

.page-official .resumo-catalogo .catalog-nav[disabled]{
  opacity: .25 !important;
  pointer-events: none !important;
}

/* fades laterais (voltaram) */
.page-official .resumo-catalogo::before,
.page-official .resumo-catalogo::after{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;
  width: 46px;
  pointer-events:none;
  z-index: 4;            /* acima do fundo, abaixo dos botões */
  opacity: 0;
  transition: opacity .18s ease;
}

.page-official .resumo-catalogo::before{
  left: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.60), transparent);
}
.page-official .resumo-catalogo::after{
  right: 0;
  background: linear-gradient(270deg, rgba(0,0,0,.60), transparent);
}

.page-official .resumo-catalogo.is-overflow::before,
.page-official .resumo-catalogo.is-overflow::after{
  opacity: 1;
}

.resumo-carrinho-linha {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* Temp catálogo (somente página temp) */
.page-official .resumo-catalogo .temp-catalog .small-panel{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: space-evenly;
  width: 90px;
  height: 110px;
  padding: 10px 0;
  font-size: 0.9rem;
}

.page-official .resumo-catalogo .temp-catalog .small-panel img{
  width: 40px;
  height: 40px;
}



.page-official .small-panel {
  background: #161616;
  border: 1px solid #1f1f1f;
  border-radius: 15px;
  margin-bottom: 20px;
}

.resumo-item-bloco {
  background: #101010;
  border: 1px solid #1e1e1e;
  padding: 14px;
  margin-top: 18px;
}

.resumo-item-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.resumo-item-row.total strong {
  color: #c5a347;
  font-size: 16px;
}
.extra-block {
  border: 1px solid #1e1e1e;
  padding: 10px;
  margin-top: 10px;
  background: #101010;
}

.extra-head {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.extra-fields {
  margin-top: 10px;
}

/* ================================
   RESPONSIVO
================================ */
@media (max-width: 1100px) {
  .layout-principal {
    grid-template-columns: 1fr;
  }

  .size-panel {
    position: relative;
    top: auto;
  }

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

/* ===========================
   Footer
=========================== */
.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.site-footer{
  background: linear-gradient(to bottom,#111111f5,#242424);
  color: #fff;
  padding: 0 0 15px 0;
}
.footer-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

/* Logo + frase */
.footer-brand{
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo{
  height: 120px;
  margin-top: 12px;
}

.footer-tagline{
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

/* Colunas */
.footer-columns{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  padding: 0 45px;
  gap: 20px;
  width: 100%;
  position: relative;
  background: linear-gradient(to right, transparent, #111, transparent);
}

.full-footer {
  width: 80%;
}

.footer-col h4{
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 0.67em;
  margin-left: 2.67rem;
}
.footer-columns a{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 8px;
}

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

/* Responsivo */
@media (max-width: 900px) {
.footer-columns{
  display: flex;
  flex-direction: column;
}
.full-2{
  flex-direction: column;
}
.footer-col{
  width: 100%;
}
.container{
  width: 100%;
}
}

@media (max-width: 600px) {

.footer-columns{
  display: flex;
  flex-direction: column;
}
}

.cc-logo,.gola-logo {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 205px;
  margin-bottom: 0.67em;

}
.cc-sub{
    position: absolute;
    width: 100%;
    overflow:visible;
    bottom: -0.575rem;
    right: 0;
    text-align: right;
    font-size: 0.85rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.cc-logo img,.gola-logo img{
    margin: 0 5px;
    height: 32px;
    width: 32px;
    transition: transform .3s ease;
    will-change: transform;
}
.logo-spin{
animation: logoSpin 900ms cubic-bezier(.4,0,.2,1);
}
.logo-rotate{
animation: logoRotate 900ms cubic-bezier(.4,0,.2,1);
}

@keyframes logoSpin{
from{
    transform: rotate(0deg);
}
to{
    transform: rotate(360deg);
}
}
@keyframes logoRotate{
from{
    transform: rotateY(0deg);
}
to{
    transform: rotateY(360deg);
}
}
cc{
    font-family:'Montserrat';
  letter-spacing: -0.075em;
  font-size: 2.15rem;
will-change: color;
transition:
    all 900ms ease
}
solucoes{
    font-family: 'Rubik';
    text-transform: uppercase;
  letter-spacing: -0.025em;
    font-weight: 500;
    margin-left: 0.05em;
}
.gradient{
  letter-spacing: -0.075em;
  font-size: 1.55rem;
    font-family:'Montserrat';
    
  
  background: linear-gradient(
    90deg,
    #756A4D,
    #C3AE77,
    #756A4D
  );
  background-size: 300% 100%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  transition: background-position 1.2s ease;
}
de{
    font-family: 'Rubik';
    text-transform: uppercase;
  letter-spacing: -0.015em;
    font-weight: 500;
    font-size: 1.15rem;
    margin: 0 0.1rem;
}
.smoke-word{
    position: relative;
  display:inline-block;
  will-change: opacity, transform, filter;
  transition:
    opacity 900ms ease,
    transform 900ms ease,
    filter 900ms ease;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.cc-sub .hero-dot{
  will-change: opacity, transform, filter;
  transition:
    opacity 900ms ease,
    transform 900ms ease,
    filter 900ms ease;
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

/* Saindo: evapora */
.smoke-word.is-out,.cc-sub .hero-dot.is-out{
  opacity: 0;
  transform: translateY(-10px) scale(1.02);
  filter: blur(8px);
}

/* Entrando: fumaça chegando */
.smoke-word.is-in,.nav-sub .hero-dot.is-in{
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  filter: blur(10px);
}