/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --dark: #111;
  --gray-light: #c8c2bb;
  --white: #ffffff;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Open Sans Condensed', sans-serif;
  --font: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ===== NAVBAR ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(4px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 48px;
}

.nav-links a {
  font-family: var(--font-condensed);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
}

/* ===== HERO ===== */
.hero {
  height: 883px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('hero-bg.jpg') center/cover no-repeat;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
}

.logo-img {
  width: 392px;
  height: auto;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.7));
}

.hero-address {
  font-size: 1.44rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.hero-phone {
  font-size: 2.56rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--white);
}

/* ===== ATENDIMENTO ===== */
.atendimento {
  height: 961px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('bg-atendimento.jpg') center/cover no-repeat;
  text-align: center;
  padding: 80px 24px 60px;
}

.atendimento-inner {
  max-width: 900px;
  width: 100%;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 300;
  letter-spacing: 12px;
  margin-bottom: 50px;
  color: var(--white);
}

.horarios-agendamento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 50px;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 32px 0;
}

.horarios, .agendamento {
  padding: 0 40px;
}

.horarios {
  border-right: 1px solid rgba(255,255,255,0.2);
}

.horarios h3, .agendamento h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.horas-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.dia {
  font-size: 1.625rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
  font-weight: 300;
}

.hora {
  font-size: 1.625rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--white);
}

.agendamento p {
  font-size: 1.3rem;
  letter-spacing: 2px;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}

.servicos-lista {
  margin-bottom: 32px;
}

.servicos-lista p {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.criancas {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
}

.trinks-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.trinks-text {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.app-badges {
  display: flex;
  gap: 12px;
}

.badge-btn { display: inline-block; }

/* ===== MEN CARE ===== */
.mencare {
  height: 834px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 48px;
  background: url('bg-produtos.jpg') center/cover no-repeat;
}

.btn-conheca {
  display: inline-block;
  border: 1px solid var(--white);
  padding: 12px 36px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}

.btn-conheca:hover {
  background: var(--white);
  color: var(--black);
}

/* ===== NOSSA HISTÓRIA ===== */
.historia {
  height: 798px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('bg-historia.jpg') center/cover no-repeat;
  text-align: center;
  padding: 60px 24px;
}

.historia-inner {
  max-width: 700px;
}

.historia-inner .section-heading {
  margin-bottom: 28px;
  letter-spacing: 8px;
}

.historia-text {
  font-size: 1.5625rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.historia-bv {
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 24px;
}

.curta-siga {
  font-size: 1rem;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a {
  opacity: 0.85;
  transition: opacity 0.2s;
}

.social-icons a:hover { opacity: 1; }

/* ===== CONTATO ===== */
.contato {
  height: 500px;
  background: #c8c2bb;
  padding: 60px 24px;
  display: flex;
  align-items: center;
}

.contato-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contato-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 10px;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.contato-sub {
  font-size: 1.625rem;
  letter-spacing: 2px;
  color: #444;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contato-email {
  font-size: 1.625rem;
  letter-spacing: 1px;
  color: #222;
  font-weight: 400;
  margin-bottom: 8px;
  word-break: break-all;
}

.contato-tel {
  font-size: 1.625rem;
  letter-spacing: 2px;
  color: #222;
  font-weight: 400;
}

.contato-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #d8d3cc;
  border: none;
  border-bottom: 1px solid #aaa;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 300;
  color: #222;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
  color: #777;
  letter-spacing: 1px;
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-bottom-color: #333;
}

.contato-form button {
  align-self: flex-end;
  margin-top: 8px;
  padding: 12px 32px;
  background: transparent;
  border: 1px solid #333;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: #222;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.contato-form button:hover {
  background: #333;
  color: var(--white);
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.4rem; letter-spacing: 5px; }
  .nav-toggle { display: flex; z-index: 1000; }

  .horarios-agendamento { grid-template-columns: 1fr; }
  .horarios { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 28px; margin-bottom: 28px; }

.contato-inner { grid-template-columns: 1fr; gap: 36px; }

  .trinks-block { align-items: center; }

  .historia-text br { display: none; }

  .hero-phone { font-size: 1.8rem; letter-spacing: 4px; }
}

@media (max-width: 480px) {
  .horas-grid { flex-direction: column; gap: 16px; }
  .section-heading { letter-spacing: 6px; }
  .app-badges { flex-direction: column; align-items: center; }
}
