:root {
  --primary: #c5a059;
  --primary-dark: #b08d4a;
  --dark: #121212;
  --bg: #fdfbf7;
  --white: #ffffff;
  --gray: #666666;
  --light-gray: #e0e0e0;
  --error-red: #e74c3c;
  --wpp-green: #25d366;
  --font-title: "Playfair Display", serif;
}

/* Estrutura Geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 100px 0;
}
.text-center {
  text-align: center;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 85px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
nav a:hover {
  color: var(--primary);
}

.btn-wpp-nav {
  color: var(--wpp-green);
  transition: 0.3s;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.menu-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&q=80&w=1600");
  background-size: cover;
  background-position: center;
}
.hero h1 {
  opacity: 0;
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero p {
  opacity: 0;
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-weight: 300;
}
.btn-hero {
  opacity: 0;
  text-decoration: none;
  background: var(--primary);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

/* Serviços */
.section-title-main {
  font-family: var(--font-title);
  font-size: 3rem;
  margin-bottom: 50px;
}
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}
.srv-card {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(197, 160, 89, 0.1);
}
.srv-card i {
  color: var(--primary);
  margin-bottom: 15px;
}
.srv-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.srv-card-price {
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-top: 8px;
}

/* Citação */
.quote-section {
  padding: 120px 0;
  text-align: center;
}
.reveal-text {
  color: rgba(18, 18, 18, 0.08);
  background: linear-gradient(to right, #121212 50%, #c5a059 100%) no-repeat;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  display: inline;
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
}

/* Agendamento */
.booking-flex {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  padding: 80px 0;
  align-items: start;
}
.booking-info h2 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.highlight {
  color: var(--primary);
}
.location-text {
  margin-bottom: 10px;
}
.location-icon {
  vertical-align: middle;
  margin-right: 5px;
}
.schedule-hint {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--gray);
}

.form-box {
  background: var(--white);
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.form-input {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 30px;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  background: transparent;
  transition: 0.3s;
}
.form-input:focus {
  border-bottom-color: var(--primary);
}

.form-section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}
.chip-item {
  display: contents;
}
.srv-input {
  display: none;
}
.srv-label {
  padding: 10px 22px;
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: 0.25s;
  background: var(--white);
  display: inline-block;
  margin-bottom: 5px;
}
.srv-input:checked + .srv-label {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.dt-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-bottom: 10px;
}
.error-msg {
  color: var(--error-red);
  font-size: 0.75rem;
  margin-top: -20px;
  margin-bottom: 20px;
  display: none;
}

.total-box {
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  display: none;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}
.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  border: none;
  border-radius: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.map-container {
  height: 450px;
  width: 100%;
  filter: grayscale(1);
  border: none;
}
footer {
  background: var(--dark);
  padding: 60px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}
.footer-copy {
  margin-top: 10px;
}

@media (max-width: 992px) {
  .booking-flex {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-box {
    padding: 30px;
  }
  nav {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  }
  nav.active {
    display: block;
  }
  .menu-mobile-btn {
    display: block;
  }
}
