/* Importando do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bemvindo, .titulo, .mais {
  background-color: rgb(48, 34, 63);
  color: rgb(255, 255, 255);
}

.destak {
  background-color: rgb(1, 6, 10);
  color: rgb(255, 255, 255);
}

.oi {
  background-color: black;
  color: rgb(58, 55, 14);
}

.menu {
  display: flex;
  justify-content: center;
  flex-direction: row;
  list-style: none;   /* remove os dots */
  color: black;
  background-color: blue;
  margin-bottom: 10px;
  padding-bottom: 5%;
}

.menu a {
  color: white;  /* Melhor contraste com fundo azul */
  text-decoration: none;
  padding: 6px 15px;
}

.menu a:hover, .menu a:focus {
  color: #d4a749; /* Bronze/dourado para hover/focus */
  outline: none;
}

nav {
  display: flex; /* Permite organizar os elementos HTML*/
  justify-content: space-between;
  background-color: #000000;
  padding: 5px 10px;
}

.logo {
  font-size: 1.8rem;
  color: #e100ff;
  font-weight: bold;
}

li {
  padding: 6px 5px 5px 25px; /* dá um respiro dentro dos links */
}

a { 
  text-decoration: none; /* remove o sublinhado */
  color: black;
}

body {
  font-family: 'Poppins', sans-serif;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url('Kisy Adenízia Minas Praia Clube — Foto: Editoria de arte (Fotos: Hedgard Moraes/Minas e Eliezer Esportes/Praia Clube)') no-repeat center center/cover;
  text-align: center;
  padding: 6rem 2rem;
  color: #fff;
}

.btn-primary {
  background-color: yellow !important;
  border-color: #990000 !important;
  color: #1f1f1f;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #d4a749 !important;
  color: #000000;
  outline: none;
}

.barbearia-footer {
  background-color: #1f1f1f; 
  color: #dedede;
  padding: 60px 25px 30px;
  font-family: 'Georgia', serif;
}

.footer-container {
  display: flex;
  justify-content: space-around; 
  flex-wrap: wrap; 
  max-width: 1100px;
  margin: 0 auto;
}

.footer-col {
  margin-bottom: 30px;
  min-width: 200px;
}

.barbearia-footer h4 {
  font-size: 1.25em;
  margin-bottom: 15px;
  border-bottom: 2px solid #a87d32; 
  padding-bottom: 5px;
  color: #fff;
  letter-spacing: 1px;
}

.footer-links a, .footer-contact p, .footer-social a {
  color: #b0b0b0;
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.3s;
}

.barbearia-footer a:hover {
  color: #d4a749;
}

.footer-info p:last-child {
  font-size: 0.85em;
  margin-top: 20px;
  color: #777;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu {
    flex-direction: column;
    padding-bottom: 0;
  }

  li {
    padding-left: 0;
  }
}
