/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

section {
  scroll-margin-top: 90px;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.luxury-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.luxury-header.scrolled {
  background: rgba(10, 10, 10, 0.88);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.luxury-logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0;
}

.logo-img {
  width: 70px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.28));
  border-radius: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-animada {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  position: relative;
  display: inline-block;
  overflow: hidden;
  letter-spacing: -1px;
  text-shadow:
    1px 1px 0 #d9d9d9,
    2px 2px 0 #c4c4c4,
    3px 3px 0 #a8a8a8,
    4px 4px 6px rgba(0,0,0,0.45);
  animation: entradaLogo 1.2s ease forwards;
  transition: all 0.3s ease;
}

.logo-animada:hover {
  transform: perspective(500px) rotateX(6deg) rotateY(-6deg) scale(1.05);
}

.logo-animada::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.65),
    transparent
  );
  transform: skewX(-20deg);
  animation: brilhoLogo 3.2s ease-in-out infinite;
}

.sub-logo {
  margin-top: 6px;
  font-size: 0.92rem;
  letter-spacing: 5px;
  font-weight: 700;
  color: #d3a04c;
  opacity: 0.95;
  text-shadow:
    1px 1px 0 #8c6b2c,
    2px 2px 4px rgba(0,0,0,0.5);
}

.luxury-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.luxury-menu a {
  position: relative;
  color: #f5f5f5;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.3s ease, transform 0.3s ease;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.luxury-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #d3a04c, #f1d18a);
  transition: width 0.3s ease;
}

.luxury-menu a:hover {
  color: #f1d18a;
  transform: translateY(-1px);
}

.luxury-menu a:hover::after {
  width: 100%;
}

.menu-btn {
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4a14d, #b9852f);
  color: #111 !important;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-btn::after {
  display: none;
}

.menu-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.24);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 90vh;
  background-image: url("images/banner1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82),
    rgba(0,0,0,0.42)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 100px;
}

.logo-hero {
  position: absolute;
  top: 20px;
  left: 40px;
  width: 90px;
  z-index: 10;
  opacity: 0.95;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
  transition: 0.3s;
}

.logo-hero:hover {
  transform: scale(1.05);
}

.hero-tag {
  display: inline-block;
  padding: 7px 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(211,160,76,0.18);
  color: #d3a04c;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 800;
  text-shadow:
    0 0 8px rgba(200,146,61,0.15),
    0 0 18px rgba(200,146,61,0.06);
}

.hero h1,
.hero h2 {
  font-size: 3.2rem; /* antes estava gigante */
  max-width: 620px;
}

.hero p,
.hero-desc {
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f5e7cf, #d9b06d);
  color: #111;
  border: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.24);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

/* =========================
   AGENDAMENTO
========================= */
.agendamento-section {
  padding: 55px 0 30px;
  background: linear-gradient(to bottom, #151515, #111111);
  position: relative;
}

.agendamento-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1100px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(211,160,76,0.4), transparent);
}

.agendamento-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.agendamento-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.agendamento-box:hover::before {
  left: 160%;
}

.agendamento-top {
  margin-bottom: 20px;
  animation: fadeUpSoft 0.9s ease both;
}

.agendamento-top h2 {
  font-size: 2.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.3),
    0 0 18px rgba(255,255,255,0.05);
}

.agendamento-top p {
  margin-top: 10px;
  color: #d3a04c;
  font-weight: 800;
  letter-spacing: 4px;
  font-size: 0.95rem;
  text-shadow: 0 0 8px rgba(211,160,76,0.12);
}

.agendamento-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.agendamento-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

.agendamento-form input {
  color: #fff;
}

.agendamento-form input,
.agendamento-form select {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
  color: #fff;
  font-weight: 500;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.agendamento-form select {
  appearance: none;
}

.agendamento-form input:focus,
.agendamento-form select:focus {
  border-color: rgba(211,160,76,0.55);
  box-shadow: 0 0 0 3px rgba(211,160,76,0.08);
  background: rgba(255,255,255,0.03);
}

.agendamento-form input::placeholder {
  color: rgba(255,255,255,0.75);
}

.agendamento-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.agendamento-btn-area {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}

.btn-book {
  border: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6a34d, #b9852f);
  color: #111;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 260px;
  text-align: center;
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.24);
}

/* =========================
   TÍTULOS
========================= */
.section-title {
  text-align: center;
  margin-bottom: 38px;
  animation: fadeUp 0.8s ease;
}

.section-title span {
  display: block;
  color: #c8923d;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(200, 146, 61, 0.18),
    0 0 18px rgba(200, 146, 61, 0.08);
}

.section-title h2 {
  font-size: 3.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1.05;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.35),
    0 0 18px rgba(255,255,255,0.06);
  transition: text-shadow 0.35s ease, transform 0.35s ease;
}

.section-title p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}

/* =========================
   SERVIÇOS
========================= */
.servicos {
  padding: 70px 0;
  background: linear-gradient(to bottom, #111111, #0d0d0d);
  position: relative;
}

.servicos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1100px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(211,160,76,0.4), transparent);
}

.cards-servicos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-servico {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-servico::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.card-servico:hover::before {
  left: 160%;
}

.card-servico:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.28);
  border-color: rgba(211,160,76,0.18);
}

.servico-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.servico-img-box img {
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.card-servico:hover .servico-img-box img {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.card-content {
  padding: 20px 18px 22px;
}

.card-content h3 {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.22);
  transition: text-shadow 0.35s ease;
}

.card-content h4 {
  color: #d3a04c;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  text-shadow: 0 0 8px rgba(211, 160, 76, 0.12);
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.card-content p {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  line-height: 1.6;
}

.card-servico:hover .card-content h3 {
  text-shadow:
    0 2px 10px rgba(0,0,0,0.25),
    0 0 12px rgba(211,160,76,0.08);
}

.card-servico:hover .card-content h4 {
  text-shadow: 0 0 10px rgba(211,160,76,0.18);
}

/* =========================
   BARBEIROS
========================= */
.barbeiros {
  padding: 65px 0 75px;
  background: linear-gradient(to bottom, #101010, #0c0c0c);
  position: relative;
}

.barbeiros::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1100px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(211,160,76,0.4), transparent);
}

.cards-barbeiros {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: start;
}

.card-barbeiro {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-barbeiro::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.card-barbeiro:hover::before {
  left: 160%;
}

.card-barbeiro:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.28);
  border-color: rgba(211,160,76,0.18);
}

.barbeiro-img-box {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
}

.barbeiro-img-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.card-barbeiro:hover .barbeiro-img-box img {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.card-barbeiro .card-content {
  text-align: center;
  padding: 18px 18px 22px;
}

.card-barbeiro .card-content h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.22);
  transition: text-shadow 0.35s ease;
}

.card-barbeiro .card-content h4 {
  color: #d3a04c;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(211,160,76,0.12);
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.card-barbeiro .card-content p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-barbeiro:hover .card-content h3 {
  text-shadow:
    0 2px 10px rgba(0,0,0,0.25),
    0 0 12px rgba(211,160,76,0.08);
}

.card-barbeiro:hover .card-content h4 {
  text-shadow: 0 0 10px rgba(211,160,76,0.18);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #050505;
  padding: 55px 20px 25px;
  border-top: 1px solid rgba(212, 162, 76, 0.18);
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1100px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(211,160,76,0.4), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col:first-child {
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: -8px;
}

.footer-logo {
  width: 150px;
  max-width: 100%;
  margin-bottom: 8px;
}

.footer-col:first-child p {
  margin: 0;
  max-width: 220px;
  line-height: 1.6;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
}

.footer-col h3 {
  color: #d4a24c;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.footer-col p,
.footer-link,
.footer-link span {
  color: #d8d8d8;
  font-size: 1.05rem;
  line-height: 1.8;
  text-decoration: none;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
  color: #f1d18a;
  transform: translateX(3px);
}

.footer-link i {
  color: #d4a24c;
  min-width: 18px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-bottom p {
  color: #a8a8a8;
  font-size: 0.95rem;
  margin: 0;
}
#horarioAgendamento {
  width: 100%;
  height: 56px;
  padding: 0 42px 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(211,160,76,0.35);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23d3a04c' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path d='M5.5 7.5l4.5 4.5 4.5-4.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

#horarioAgendamento:focus {
  border-color: #d3a04c;
  box-shadow: 0 0 0 3px rgba(211,160,76,0.08);
}

#horarioAgendamento option {
  color: #111;
  background: #fff;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.notif {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff2b2b;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseNotif 1.5s infinite;
}

.whatsapp-box {
  position: fixed;
  bottom: 95px;
  right: 20px;
  background: rgba(10, 10, 10, 0.95);
  color: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 999;
  animation: fadeUpSoft 0.6s ease;
}

.whatsapp-box p {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: #f2f2f2;
}

.whatsapp-box a {
  color: #25D366;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
}

.whatsapp-box a:hover {
  text-decoration: underline;
}

/* =========================
   ANIMAÇÕES
========================= */
@keyframes brilhoLogo {
  0% { left: -75%; }
  100% { left: 130%; }
}

@keyframes entradaLogo {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseNotif {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 43, 43, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(255, 43, 43, 0); }
  100% { transform: scale(1); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1024px) {
  .hero h1,
  .hero h2 {
    font-size: 3.4rem;
  }

  .cards-servicos {
    grid-template-columns: 1fr 1fr;
  }

  .agendamento-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .nav {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .luxury-menu {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-content {
    padding-top: 210px;
    text-align: center;
  }

  .hero h1,
  .hero h2 {
    font-size: 3.6rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc,
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .cards-servicos,
  .cards-barbeiros {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 2.3rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .logo-img {
    width: 85px;
  }

  .logo-animada {
    font-size: 2.2rem;
  }

  .sub-logo {
    font-size: 0.95rem;
    letter-spacing: 3px;
  }

  .hero {
    min-height: 70vh;
    background-position: center;
  }

  .hero-content {
    padding: 160px 0 70px;
    text-align: center;
  }

  .hero h1,
  .hero h2 {
    font-size: 2.8rem;
    max-width: 100%;
  }

  .hero-tag {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .agendamento-box {
    padding: 22px 16px;
  }

  .agendamento-top h2 {
    font-size: 1.6rem;
  }

  .agendamento-form {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 2.1rem;
  }

  .card-content h3,
  .card-barbeiro .card-content h3 {
    font-size: 1.6rem;
  }

  .footer {
    padding-top: 32px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col:first-child {
    margin-top: 0;
  }
}
/* AGENDAMENTO - PADRÃO PREMIUM DO SITE */
.agendamento-box form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.agendamento-box form input,
.agendamento-box form select {
  height: 48px;
  min-width: 170px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(202, 160, 58, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.agendamento-box form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.agendamento-box form input:focus,
.agendamento-box form select:focus {
  border-color: #caa03a;
  box-shadow: 0 0 0 3px rgba(202, 160, 58, 0.15);
  background: rgba(255, 255, 255, 0.09);
}

.agendamento-box form select {
  cursor: pointer;
}

.agendamento-box form option {
  background: #111;
  color: #fff;
}

.agendamento-btn {
  height: 48px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8aa3a, #b88621);
  color: #111;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 24px rgba(202, 160, 58, 0.22);
}

.agendamento-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(202, 160, 58, 0.3);
  filter: brightness(1.05);
}

.agendamento-btn:active {
  transform: translateY(0);
}

#mensagem-agendamento {
  width: 100%;
  text-align: center;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
}

/* deixa o input de data no mesmo visual */
.agendamento-box input[type="date"] {
  color-scheme: dark;
}

/* responsivo */
@media (max-width: 900px) {
  .agendamento-box form {
    flex-direction: column;
  }

  .agendamento-box form input,
  .agendamento-box form select,
  .agendamento-btn {
    width: 100%;
    max-width: 420px;
  }
}.horarios-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
  margin: 15px 0;
}

.horarios-container p {
  color: #aaa;
  font-size: 14px;
}

.horario-btn {
  background: #1c1c1c;
  color: #fff;
  border: 1px solid #c99a2e;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
}

.horario-btn:hover {
  background: #c99a2e;
  color: #000;
}

.horario-btn.ativo {
  background: #c99a2e;
  color: #000;
  box-shadow: 0 0 18px rgba(201, 154, 46, 0.7);
}

.horario-btn.ocupado {
  background: #333;
  color: #777;
  border-color: #444;
  cursor: not-allowed;
  text-decoration: line-through;
}.horario-btn {
  border: 1px solid #c89b2f;
  background: transparent;
  color: #fff;
  padding: 8px 14px;
  margin: 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.horario-btn:hover {
  background: #c89b2f;
  color: #000;
}

.horario-btn.ativo {
  background: #c89b2f;
  color: #000;
  font-weight: bold;
}

.horario-btn.desabilitado {
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 768px) {
  .luxury-menu {
    gap: 10px;
    font-size: 13px;
  }

  .menu-btn {
    padding: 10px 18px;
  }

  .agendamento-box {
    width: 92%;
    padding: 28px 18px;
    margin: 0 auto;
  }

  .agendamento-top h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  #form-agendamento {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  #form-agendamento input,
  #form-agendamento select {
    width: 100%;
    height: 52px;
    font-size: 16px;
  }

  .horarios-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .horario-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
  }

  .agendamento-btn {
    width: 100%;
    height: 54px;
    font-size: 15px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .cards-servicos,
  .cards-barbeiros {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 18px;
  }
}