:root {
  --gold: #d4af37;
  --gold-light: #e6c76c;
  --dark: #1a1a1a;
  --light: #f8f9fa;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* Header e Navegação */
.navbar {
  background-color: var(--dark);
  padding: 15px 0;
  transition: all 0.3s;
}

.navbar-brand img {
  max-height: 60px;
}

.navbar .nav-link {
  color: var(--light);
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold);
}

/* Hero Section */
#hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./img/logo-branca.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

#hero h1 {
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Componentes Reutilizáveis */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--gold);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--dark);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
}

.btn-gold:hover {
  background-color: #b6982e;
  color: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Cards de serviços */
.card {
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-body {
  padding: 30px;
  text-align: center;
}

.service-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

#frenteBarbearia {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.gallery-item {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #eee;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item::before {
  content: "Imagem da Galeria";
  color: #999;
  font-size: 1.2rem;
}

/* Mapa */
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

/* Contato */
.contact-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
  max-width: 900px;
}

.contact-content {
  padding: 40px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-info i {
  color: var(--gold);
  margin-right: 10px;
  width: 25px;
}

.social-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  background-color: #f0f0f0;
  color: var(--dark);
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  margin-right: 10px;
  transition: all 0.3s;
  font-size: 1.2rem;
}

.social-icon:hover {
  background-color: var(--gold);
  color: white;
  transform: translateY(-5px);
}

.rating-section {
  background-color: #fafafa;
  border-radius: 10px;
  padding: 25px;
  margin-top: 30px;
  border: 1px solid #eee;
  text-align: center;
}

.stars {
  font-size: 2.5rem;
  color: #ddd;
  margin: 15px 0;
  cursor: pointer;
}

.stars .fa-star {
  margin: 0 3px;
  transition: all 0.2s;
}

.stars .fa-star.hover,
.stars .fa-star.active {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.rating-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.business-hours {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.day-time {
  width: 48%;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

.map-container {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
  background-color: #e9ecef;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
}

footer a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
}

footer a:hover {
  color: var(--gold);
}

/* Responsividade */
@media (max-width: 768px) {
  #hero {
    height: 80vh;
  }

  .navbar {
    padding: 10px 0;
  }

  .contact-content {
    padding: 30px 20px;
  }

  .day-time {
    width: 100%;
  }

  .stars {
    font-size: 2rem;
  }
}