:root {
  --dark: #111111;
  --dark-2: #1a1a1a;
  --gold: #c89b3c;
  --gold-light: #e0b85c;
  --white: #ffffff;
  --gray: #777777;
  --light: #f8f8f8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background-color: var(--white);
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

/* NAVBAR */

.custom-navbar {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: 0.3s ease;
}

.custom-navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  font-weight: 800;
  color: var(--gold) !important;
  letter-spacing: 1px;
}

.logo i {
  margin-right: 8px;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin-left: 12px;
  position: relative;
}

.nav-link:hover {
  color: var(--gold) !important;
}

/* HERO */

.hero-section {
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.2)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 155, 60, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-section h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.15rem;
  max-width: 620px;
  color: #e6e6e6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* BOTÕES */

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
}

/* SEÇÕES */

.section-padding {
  padding: 90px 0;
}

.section-title {
  margin-bottom: 55px;
}

.section-title span,
.section-small-title {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.section-title h2,
.big-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin: 12px 0;
}

.section-title p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--gray);
}

.section-title.light h2,
.section-title.light p {
  color: var(--white);
}

.bg-dark-custom {
  background: var(--dark);
}

.bg-light-custom {
  background: var(--light);
}

/* SERVIÇOS */

.service-card {
  background: var(--white);
  padding: 35px 28px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #eeeeee;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.service-card i {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* GALERIA */

.gallery-card {
  overflow: hidden;
  border-radius: 16px;
  height: 290px;
  position: relative;
  cursor: pointer;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.12);
}

/* EQUIPE */

.team-card {
  background: var(--white);
  text-align: center;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  height: 310px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.team-card h3 {
  font-weight: 800;
  margin-bottom: 5px;
}

.team-card p {
  color: var(--gray);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: 0.3s ease;
}

.team-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

/* PREÇOS */

.price-card {
  background: var(--white);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card.featured {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--gold);
}

.featured-label {
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--gold);
  color: var(--dark);
  padding: 6px 40px;
  transform: rotate(35deg);
  font-size: 0.75rem;
  font-weight: 800;
}

.price-card h3 {
  font-weight: 800;
  margin-bottom: 15px;
}

.price {
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 12px;
}

.price-card p {
  color: var(--gray);
  min-height: 55px;
}

.price-card.featured p {
  color: #dddddd;
}

/* DEPOIMENTOS */

.testimonials-section {
  background: linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)),
    url("https://images.unsplash.com/photo-1517832606299-7ae9b720a186?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.stars {
  color: var(--gold);
  margin-bottom: 18px;
}

.testimonial-card p {
  font-style: italic;
  color: #eeeeee;
  line-height: 1.7;
}

.testimonial-card h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 18px;
}

/* AGENDAMENTO */

.schedule-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.schedule-list li {
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 600;
}

.schedule-list i {
  color: var(--gold);
  margin-right: 10px;
}

.booking-box {
  background: var(--dark);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.booking-box h3 {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 25px;
}

.booking-box h4 {
  color: var(--gold);
  margin-top: 20px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333333;
  padding: 15px 0;
  gap: 20px;
}

.hour-item strong {
  color: var(--gold-light);
}

/* MAPA */

.map-section {
  position: relative;
}

.map-info {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 50px 20px;
}

.map-info h2 {
  font-weight: 900;
}

.map-info p {
  color: #dddddd;
}

/* FOOTER */

.footer {
  background: #070707;
  color: var(--white);
  padding: 70px 0 20px;
}

.footer h3,
.footer h4 {
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 800;
}

.footer p {
  color: #cccccc;
  line-height: 1.7;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #cccccc;
  transition: 0.3s ease;
}

.footer ul li a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid #222222;
}

/* WHATSAPP FIXO */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

/* RESPONSIVO */

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--dark);
    padding: 20px;
    margin-top: 15px;
    border-radius: 12px;
  }

  .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .hero-section {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.78);
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }

  .hero-section h1 {
    font-size: 2.6rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hour-item {
    flex-direction: column;
    gap: 5px;
  }

  .booking-box {
    padding: 30px 24px;
  }

  .gallery-card {
    height: 240px;
  }

  .team-card img {
    height: 260px;
  }
}