/* Global Font */
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #6a73fd;
  background-color: #000000;
}

/* Navigation Menu */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 10px 20px;
  margin: 0;
  background-color: #f9f9f9;
  border-radius: 8px;
  justify-content: center;
}

.main-nav ul li a {
  text-decoration: none;
  color: #333;
  padding: 8px 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.main-nav ul li a:hover {
  background-color: #e6e6e6;
}

/* Styled button for AGENDAR SERVIÇO */
.schedule-button {
  background-color: #007BFF;
  color: white !important;
  padding: 10px 16px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.schedule-button:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* General Layout */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero {
  text-align: center;
  padding: 40px 0;
}

.hero h1 {
  background-color: #6a73fd;
  color: white;
  padding: 20px 30px;
  border-radius: 10px;
  display: inline-block;
  font-size: 2.5rem;
  box-shadow: 0 4px 15px rgba(106, 115, 253, 0.4);
  margin: 0;
}

.about,
.services-contact {
  margin: 40px 0;
}

/* Add border highlight to Quem Somos and Contato */
.about,
.services-contact {
  border: 2px solid #6a73fd;
  border-radius: 10px;
  padding: 20px;
  background-color: #0a0a0a;
  box-shadow: 0 4px 10px rgba(106, 115, 253, 0.2);
}

.services-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.column {
  flex: 1;
  min-width: 280px;
}

.whatsapp-button,
.instagram-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  vertical-align: middle;
}

.whatsapp-button {
  background-color: #444;
  color: white;
}

.whatsapp-button:hover {
  background-color: #222;
}

.instagram-button {
  background-color: #666;
  color: white;
  margin-left: 10px;
}

.instagram-button:hover {
  background-color: #444;
}

.icon {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px 0;
  color: #6655c7;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}

/* Background image section */
.shop-background-wrapper {
  max-width: 960px;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.shop-background {
  background-image: url('FG Automotiva.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 350px;
  border-radius: 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.shop-background:hover,
.shop-background:focus {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Location Link Emoji */
.location-link {
  font-size: 1.5rem;
  text-decoration: none;
  margin-right: 6px;
  vertical-align: middle;
  transition: color 0.3s ease;
  cursor: pointer;
  color: #007BFF;
}

.location-link:hover,
.location-link:focus {
  color: #0056b3;
  outline: none;
  text-decoration: underline;
}

/* Location Button */
.location-button {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background-color: #007BFF;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.location-button:hover,
.location-button:focus {
  background-color: #0056b3;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  outline: none;
}

/* Reviews Section */
.reviews {
  margin: 50px auto;
  max-width: 960px;
  padding: 0 15px;
  text-align: center;
  border: 2px solid #6a73fd; /* border highlight for Avaliações */
  border-radius: 10px;
  padding: 20px;
  background-color: #0a0a0a;
  box-shadow: 0 4px 10px rgba(106, 115, 253, 0.2);
}

.reviews h2 {
  background-color: #6a73fd;
  color: white;
  padding: 20px 30px;
  border-radius: 10px;
  display: inline-block;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(106, 115, 253, 0.4);
  margin: 0 auto 30px auto;
  text-align: center;
}

.review-card {
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 700;
  color: #333;
}

.stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-card p {
  font-style: italic;
  color: #555;
  line-height: 1.4;
}

.reviews-button-wrapper {
  text-align: center;
  margin: 30px 0;
}

.reviews-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #007BFF;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.reviews-button:hover,
.reviews-button:focus {
  background-color: #0056b3;
  box-shadow: 0 6px 14px rgba(0, 86, 179, 0.6);
  outline: none;
}
