@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --bg-1: #0b0b0c;
  --bg-2: #141418;
  --text: #eae7de;
  --muted: #c9c6bc;
  --stroke: #26262b;
  --gold-1: #f5d77a;
  --gold-2: #e2b646;
  --gold-3: #b78d2a;
  --site-bg: #0b0b0d;
  --gold-1: #cfa74e;
  --gold-2: #ffd670;
  --gold-3: #d8aa35;
}

*,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  color: #ffffff;
}

body {
  background: black;
  font-family: "Montserrat", sans-serif;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  position: fixed;
  width: 100%;
  z-index: 100;
}

.menu-desktop {
  display: flex;
  align-items: center;
}

header nav ul {
  display: flex;
  gap: 20px;
  margin-right: 28px;
}

header nav ul li a {
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: white;
}

#hero {
  background: url("assets/imagens/hero.png") no-repeat;
  height: 100vh;
  display: flex;
  background-position: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content {
  animation: slideUp 0.8s ease forwards;
}

#hero h1 {
  font-size: 6rem;
  max-width: 1200px;
  margin-bottom: 20px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-gradient {
  --radius: 9999px;
  --pad-y: 12px; /* ajuste fino */
  --pad-x: 28px;
  --bg: #0d0d0f;
  --text: #cfcfcf;

  position: relative;
  display: inline-block;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--radius);
  font: 600 16px/1.1 "Montserrat", system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border: 2px solid transparent;

  /* truque do “duplo background” para borda em gradiente */
  background-image: linear-gradient(var(--bg), var(--bg)),
    linear-gradient(90deg, #ff2a47 0%, #6a00ff 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  transition: box-shadow 0.25s ease, transform 0.15s ease, color 0.2s ease;
}

.btn-gradient:hover {
  box-shadow: 0 0 14px rgba(106, 0, 255, 0.35);
  color: #e7e7e7;
  transform: translateY(-1px);
}

.btn-gradient:active {
  transform: translateY(0);
  box-shadow: 0 0 8px rgba(106, 0, 255, 0.25);
}

.btn-gradient:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06),
    0 0 0 6px rgba(106, 0, 255, 0.35);
}

/* CARD MAIOR */
.card {
  /* tamanhos maiores e fluidos */
  width: clamp(300px, 28vw, 360px);
  height: clamp(420px, 42vw, 520px);

  background: radial-gradient(
    120% 100% at 10% 0%,
    #a9a9a966 0%,
    #1c1c1c 45%,
    #000000 100%
  );
  border-radius: 24px;
  padding: clamp(22px, 2.2vw, 32px);
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  /* gradiente dourado metálico */
  background: linear-gradient(135deg, #cfa74e 0%, #ffd670 40%, #d8aa35 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(255, 209, 92, 0.25); /* reflexo dourado */
}

/* bolinha do topo */
.icon {
  position: absolute;
  top: clamp(18px, 1.6vw, 26px);
  left: clamp(18px, 1.6vw, 26px);
  width: clamp(48px, 4.5vw, 90px);
  height: clamp(48px, 4.5vw, 90px);
  background: #fff;
  border-radius: 50%;
  text-align: center;
}

.icon img {
  height: 80px;
}

/* textos maiores */
.card h3 {
  font-weight: 800;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  line-height: 1.1;
  margin: 0 0 8px 0;
}
.card .price {
  font-weight: 700;
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  margin: 0 0 clamp(16px, 2vw, 24px) 0;
  opacity: 0.95;
}

/* botão maior — mesmo estilo do anterior */
.btn-gradient {
  --radius: 9999px;
  --pad-y: clamp(10px, 1.1vw, 14px);
  --pad-x: clamp(22px, 2vw, 28px);
  --bg: #0d0d0f;
  --text: #f6f6f6;

  position: relative;
  display: inline-block;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--radius);
  font: 600 clamp(12px, 1vw, 14px) / 1.1 "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border: 2px solid transparent;

  background-image: linear-gradient(var(--bg), var(--bg)),
    linear-gradient(90deg, #cfa74e 0%, #ffd670 50%, #d8aa35 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  transition: box-shadow 0.25s ease, transform 0.15s ease, color 0.2s ease;
}
.btn-gradient:hover {
  box-shadow: 0 0 20px rgba(255, 209, 92, 0.45);
  color: #fff;
  transform: translateY(-1px);
}
/* responsivo: empilha em 1–2 colunas quando faltar espaço */
@media (max-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}
@media (max-width: 640px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}

/* ocupa a altura da tela e centraliza vertical + horizontal */
.cards-wrapper {
  min-height: 100vh;
  display: grid;
  place-items: center; /* centraliza o bloco .cards-section no meio da tela */
  padding: 40px 16px; /* respiro nas bordas */
}

/* largura máxima e centralização horizontal */
.cards-section {
  width: 100%;
  max-width: 1280px; /* ajuste: 960–1280 */
  margin-inline: auto; /* centraliza */
}

/* grid dos cards já centralizado dentro da seção */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center; /* alinha cada card ao centro da coluna */
}

/* responsivo */
@media (max-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}
@media (max-width: 640px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}

.tesoura {
  position: absolute;
  left: calc(100vw - 480px); /* fixa 480px antes da borda direita */
  max-width: 700px; /* pra evitar distorção */
  z-index: 2;
}

.cards-section h2 {
  text-align: center;
  margin-bottom: 70px;
  font-size: 4rem;
}

section#agendamento {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 20px;
  text-align: center;
}

section#agendamento h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #f3e6c1;
  margin-bottom: 10px;
}

section#agendamento p {
  color: #cfcfcf;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.agendamento-container {
  display: flex;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 50px rgba(255, 215, 100, 0.1);
  gap: 40px;
  max-width: 900px;
  flex-wrap: wrap;
  justify-content: center;
}

.agendamento-container img {
  width: 320px;
  border-radius: 15px;
  object-fit: cover;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 300px;
  text-align: left;
}

form h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #f3e6c1;
}

form input,
form select {
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 1rem;
}

form input::placeholder {
  color: #aaa;
}

form button {
  background: linear-gradient(135deg, #f5d77a, #e2b646);
  color: #111;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

form button:hover {
  box-shadow: 0 0 20px rgba(255, 215, 100, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .agendamento-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  form {
    width: 100%;
    max-width: 350px;
  }
  .agendamento-container img {
    width: 100%;
    max-width: 350px;
  }
}

.icon2 {
  position: fixed;
  bottom: 60px;
  right: 30px;
  font-size: 28px;
  background: #01e675;
  color: #ffffff;
  border-radius: 50%;
  padding: 3px;
  width: 70px;
  height: 70px;
  text-decoration: none;
  z-index: 100;
  transition: 1s;
}

.icon2 i {
  margin-left: 12px;
  font-size: 1.5em;
}

.button-zap {
  display: flex;
  align-items: center;
}

.wrap {
  max-width: 1100px;
  margin: 28px auto;
  padding: 0 20px;
}
.card2 {
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 24, 0.9),
    rgba(16, 16, 19, 0.9)
  );
  border: 1px solid rgba(183, 141, 42, 0.18);
  border-radius: 18px;
  padding: 24px;
  box-shadow: inset 0 0 40px rgba(245, 215, 122, 0.04),
    0 30px 80px rgba(0, 0, 0, 0.35);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
}
input,
button,
select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #2a2a31;
  background: linear-gradient(180deg, #151519, #101013);
  color: #fff;
  outline: none;
}
input[type="date"] {
  color-scheme: dark;
}
label {
  display: block;
  color: #c9c6bc;
  margin-top: 8px;
  margin-bottom: 6px;
}
button.cta {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #111;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
button.cta:hover {
  box-shadow: 0 10px 26px rgba(226, 182, 70, 0.45);
}
.horas .hora {
  padding: 10px 0;
  text-align: center;
  border: 1px solid rgba(245, 215, 122, 0.3);
  border-radius: 10px;
}
.hora.disponivel {
  cursor: pointer;
}
.hora.disponivel:hover {
  background: rgba(245, 215, 122, 0.1);
  border-color: rgba(245, 215, 122, 0.6);
}
.hora.ativo {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #111;
  font-weight: 700;
}
.hora.ocupado {
  background: #2a2a31;
  color: #888;
  border-color: #444;
  position: relative;
}
.hora.ocupado::after {
  content: "X";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f5d77a;
  font-weight: 700;
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}
.muted {
  color: #c9c6bc;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
a.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #2a2a31;
  text-decoration: none;
  color: #f1f1f1;
}
a.btn:hover {
  border-color: rgba(245, 215, 122, 0.6);
}
table {
  width: 100%;
  border-collapse: collapse;
  color: #eae7de;
}
th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid #2a2a31;
  text-align: left;
}
.right {
  text-align: right;
}
.danger {
  color: #ff9b9b;
}

.horario {
  text-align: center;
  font-size: 4rem;
}

.services {
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  inset: 12px 0 auto 0;
  height: 213px;
  filter: blur(100px);
  opacity: 0.8;
  background: radial-gradient(
      120% 80% at 70% -20%,
      rgba(180, 120, 255, 0.25) 0%,
      transparent 60%
    ),
    radial-gradient(
      90% 60% at 20% -10%,
      rgba(0, 200, 255, 0.18) 0%,
      transparent 70%
    );
  pointer-events: none;
}

@media (max-width: 650px) {
  #hero h1 {
    font-size: 3rem;
  }
  .card {
    z-index: 2;
  }
  .tesoura {
    left: 194px;
    height: 650px;
    z-index: 1;
  }
}

@media (max-width: 1300px) {
  .icon img {
    height: 50px;
  }
}

@media (min-width: 1320px) {
  .icon img {
    height: 63px;
  }
}

small {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

@media (min-width: 550px) and (max-width: 1200px) {
  .tesoura {
    height: 1040px;
    z-index: 1;
  }
}

@media (min-width: 1030px) and (max-width: 1900px) {
  .tesoura {
    height: 1040px;
    z-index: 1;
  }
}

/* header base */
.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  backdrop-filter: saturate(1.1);
}

.logo {
  height: 120px;
  width: auto;
}

/* desktop nav visível só >= 992px */
.menu-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}
.menu-list {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list a {
  color: #eaeaea;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease, text-shadow 0.2s ease;
}
.menu-list a:hover {
  opacity: 0.9;
  text-shadow: 0 0 12px rgba(255, 209, 112, 0.25);
}

/* botão hambúrguer (aparece só < 992px) */
.hamburger {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    120% 100% at 10% 0%,
    #0c0c17 0%,
    #070615 45%,
    #050312 100%
  );
  cursor: pointer;
  padding: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.hamburger:hover {
  box-shadow: 0 0 0 1px rgba(255, 209, 112, 0.25),
    0 6px 16px rgba(255, 209, 92, 0.12);
}
.hamburger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    135deg,
    var(--gold-1),
    var(--gold-2),
    var(--gold-3)
  );
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.hamburger span:nth-child(1) {
  top: 14px;
}
.hamburger span:nth-child(2) {
  top: 22px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* estado ativo -> anima para “X” */
.hamburger.is-active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* Drawer */
.mobile-nav[aria-hidden="false"] {
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
}
.mobile-nav[hidden] {
  display: none;
}

/* overlay */
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* painel */
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(84vw, 360px);
  height: 100%;
  background: radial-gradient(
    120% 100% at 10% 0%,
    #0c0c17 0%,
    #070615 45%,
    #050312 100%
  );
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 22px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(207, 167, 78, 0.18),
    rgba(255, 214, 112, 0.12),
    rgba(216, 170, 53, 0.18)
  );
  mix-blend: screen;
  opacity: 0.35;
}

/* conteúdo do menu */
.mobile-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav nav a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #f2f2f2;
  font-weight: 700;
  font-size: 1.05rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.mobile-nav nav a:hover {
  border-color: rgba(255, 209, 112, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 209, 112, 0.15) inset,
    0 8px 18px rgba(255, 209, 92, 0.08);
  transform: translateX(2px);
}
.w-full {
  width: 100%;
}

/* estados “aberto” */
.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}
.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

/* responsividade */
@media (max-width: 992px) {
  .menu-desktop {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.mobile-nav__title {
  color: #f2f2f2;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mobile-nav__close {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(
    120% 100% at 10% 0%,
    #0c0c17 0%,
    #070615 45%,
    #050312 100%
  );
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.mobile-nav__close::before,
.mobile-nav__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transform-origin: center;
  background: linear-gradient(
    135deg,
    var(--gold-1),
    var(--gold-2),
    var(--gold-3)
  );
}
.mobile-nav__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-nav__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-nav__close:hover {
  box-shadow: 0 0 0 1px rgba(255, 209, 112, 0.25),
    0 8px 18px rgba(255, 209, 92, 0.12);
  transform: translateY(-1px);
}

footer {
  background: #1b1b1b;
  color: #a3a3a3;
  border-top: 1px solid #262626;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 5rem;
  margin-top: 5%;
}

footer span a{
  color: #73ff00;
}

.img-footer {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .img-footer {
    text-align: center;
  }
}

.card-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
}

.card-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 16px;
}

.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.card-content .price {
  font-weight: 600;
  color: #ffd670;
  margin-bottom: 12px;
}

.btn-gradient {
  background: transparent;
  border: 1px solid #ffd670;
  color: #ffd670;
  border-radius: 30px;
  padding: 8px 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  background: #ffd670;
  color: #0b0b0e;
}

.btn-gradient a {
  color: inherit;
  text-decoration: none;
  display: block;
}
