* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

.hero picture,
.bg-img {
  display: block;
  width: 100%;
  height: 100vh;
}

.bg-img {
  object-fit: cover;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.02), rgba(0,0,0,.04) 55%, rgba(0,0,0,.24) 100%);
  pointer-events: none;
}

.counter-box {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 40;
  text-align: center;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,122,0,0.55);
  border-radius: 12px;
  padding: 12px 25px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
}

.counter-label {
  color: rgba(255,255,255,0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.counter-value {
  color: #ff7a00;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255,122,0,0.7);
  font-family: "Courier New", monospace;
}

/* BOTÕES REAIS DO INDEX - CORRIGIDOS PARA NÃO CORTAR TEXTO */
.actions {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  width: min(1250px, calc(100% - 110px));
  pointer-events: auto;
}

.btn {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  height: 78px;
  min-width: 0;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.18);
  box-shadow:
    0 18px 42px rgba(0,0,0,.52),
    inset 0 2px 0 rgba(255,255,255,.26),
    inset 0 -5px 0 rgba(0,0,0,.22);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events: none;
}

.btn-buzzo {
  background:
    linear-gradient(180deg, #ff9d1a 0%, #ff7a00 47%, #cf5900 100%);
}

.btn-site360 {
  background:
    linear-gradient(180deg, #69c738 0%, #3ca81d 47%, #236f12 100%);
}

.btn-symbol {
  width: 44px;
  height: 44px;
  margin-left: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.22),
    0 5px 14px rgba(0,0,0,.30);
  z-index: 2;
}

.btn-symbol svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: rgba(255,255,255,.94);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-site360 .btn-symbol svg {
  stroke: rgba(245,245,245,.96);
}

.btn-text {
  min-width: 0;
  display: block;
  padding: 0 24px 0 20px;
  text-align: center;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1.45px;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0,0,0,.35),
    0 4px 9px rgba(0,0,0,.48);
  white-space: nowrap;
  overflow: visible;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    0 24px 56px rgba(0,0,0,.60),
    inset 0 2px 0 rgba(255,255,255,.30),
    inset 0 -5px 0 rgba(0,0,0,.20);
}

.btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

/* NOTEBOOK / TABLET */
@media (max-width: 1200px) {
  .actions {
    gap: 26px;
    width: calc(100% - 80px);
  }

  .btn-text {
    font-size: clamp(16px, 1.8vw, 22px);
    letter-spacing: 1px;
    padding-right: 18px;
    padding-left: 16px;
  }
}

@media (max-width: 1024px) {
  .actions {
    bottom: 28px;
    gap: 18px;
    width: calc(100% - 40px);
  }

  .btn {
    height: 68px;
    border-radius: 18px;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .btn-symbol {
    width: 36px;
    height: 36px;
    margin-left: 12px;
  }

  .btn-symbol svg {
    width: 23px;
    height: 23px;
    stroke-width: 4;
  }

  .btn-text {
    font-size: clamp(14px, 2vw, 19px);
    letter-spacing: .8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .counter-box {
    top: 12px;
    right: 12px;
    padding: 9px 18px;
  }

  .counter-label {
    font-size: 9px;
  }

  .counter-value {
    font-size: 22px;
  }
}

/* CELULAR */
@media (max-width: 768px) {
  .hero picture,
  .bg-img {
    height: 100svh;
    min-height: 760px;
  }

  .bg-img {
    object-position: center center;
  }

  .actions {
    bottom: 18px;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    width: calc(100% - 18px);
  }

  .btn {
    height: 58px;
    border-radius: 15px;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .btn::after {
    inset: 4px;
    border-radius: 12px;
  }

  .btn-symbol {
    width: 28px;
    height: 28px;
    margin-left: 6px;
  }

  .btn-symbol svg {
    width: 18px;
    height: 18px;
    stroke-width: 4;
  }

  .btn-text {
    padding: 0 7px 0 5px;
    font-size: clamp(9.5px, 2.65vw, 12px);
    letter-spacing: .2px;
    line-height: 1.08;
    white-space: normal;
  }

  .counter-box {
    top: 8px;
    right: 8px;
    padding: 7px 13px;
    border-radius: 10px;
  }

  .counter-label {
    font-size: 8px;
  }

  .counter-value {
    font-size: 19px;
  }
}

@media (max-width: 390px) {
  .actions {
    gap: 7px;
  }

  .btn {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .btn-symbol {
    width: 25px;
    height: 25px;
    margin-left: 5px;
  }

  .btn-symbol svg {
    width: 16px;
    height: 16px;
  }

  .btn-text {
    font-size: 9.2px;
    letter-spacing: 0;
  }
}
