/* =============================================== */
/* Configurações Globais e Variáveis               */
/* =============================================== */
:root {
  --ink: #0A0B0C;
  --bg: #050607;
  --paper: #FFFFFF;
  --aqua: #ffd000; /* Amarelo principal */
  --mint: #ffc118; /* Amarelo secundário (gradiente) */
  --graphite: #141618; /* Cor de fundo dos cards */
  --muted: #AFB4BB; /* Texto sutil */
  --radius: 18px; /* Arredondamento padrão */
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: #fff;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, Noto Sans;
}

a {
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
  border-radius: 10px;
}

/* =============================================== */
/* Componentes Principais                          */
/* =============================================== */

/* Cabeçalho Fixo */
.header-blur {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, .55);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

/* Efeito Vidro Fosco (usado no formulário) */
.glass {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Cards de Serviço e Pacotes */
.card {
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%; /* Garante que todos os cards na mesma linha tenham a mesma altura */
}
.card-content {
  padding: 1rem; /* 16px */
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Faz esta área crescer para ocupar o espaço */
}
.card-image-container {
  height: 9rem; /* 144px */
  overflow: hidden;
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badges (etiquetas) */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .6rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
}
.badge-lg {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  gap: 0.5rem;
}

/* Botões */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-radius: 0.5rem; /* 8px */
  background: linear-gradient(180deg, var(--aqua), var(--mint));
  color: #061013;
  font-weight: 900;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

/* Preço */
.price {
  font-weight: 900;
  font-size: 1.2rem;
}

/* =============================================== */
/* Formulário de Agendamento                       */
/* =============================================== */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem; /* 8px */
  background-color: var(--ink);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--paper);
}
.form-input:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 2px rgba(255, 208, 0, 0.5);
}

/* =============================================== */
/* Botão Flutuante WhatsApp                        */
/* =============================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: var(--aqua);
  color: var(--ink);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
.whatsapp-float:hover {
  background-color: var(--mint);
  transform: scale(1.1);
}

/* =============================================== */
/* Rodapé                                          */
/* =============================================== */
footer a {
  color: var(--paper);
  opacity: .8;
}
footer a:hover {
  opacity: 1;
}