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

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #f7f4ff;
}

/* ================= HEADER ================= */

.header {
  background-color: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.espaco {
    margin-right: 100px;
}

.logo {
  font-size: 1.9rem;
  font-weight: 700;
  color: #e91e63;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-link:visited {
  color: inherit;
}

.logo-link:hover {
  color: inherit;
}


.logo::after {
  content: "Designer de Sombrancelha - Depiladora - Manicure";
  display: block;
  font-size: 0.65rem;
  letter-spacing: .4px;
  margin-top: 4px;
  color: #c2185b;
  font-weight: 500;
}

/* Menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e91e63;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}



.nav-links a:hover {
  color: #c2185b;
}

/* botão /* ================= FOOTER ================= */

footer {
  width: 100%;
  background: linear-gradient(135deg, #fde4ec, #fff);
  padding: 24px 0;
  border-top: 2px solid #f8bbd0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* redes */
footer .redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}


footer .redes a {
  text-decoration: none;
  color: #c2185b;
  font-weight: 600;
}

footer .redes a:hover {
  color: #e91e63;
}

/* REMOVE AZUL PADRÃO */
footer a,
footer a:visited,
footer a:active {
  color: #c2185b;
}

/* Botão hambúrguer */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

/* Conteúdo do header */

.logo-img {
  height: 87px;
  width: 87px;
  display: block;
}

.header-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header-content .texto {
  max-width: 500px;
}

.header-content .texto h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.header-content .texto p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  @media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }
}

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 0.5rem;
  }
}

/* ================= CONTEÚDO ================= */

.titulo-galeria {
  width: 100%;
  color: #e91e63;
  text-align: center;
  font-size: 2rem;
  margin: 30px 0;
}

#container-galeria {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Capas */
.item-galeria {
  position: relative;
  display: inline-block;
  margin: 10px;
  text-align: center;
}

.foto-capa {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.foto-capa:hover {
  transform: scale(1.03);
}

.legenda-galeria {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 8px;
  font-size: 16px;
  border-radius: 0 0 10px 10px;
}

/* Galeria interna */
.foto-galeria {
  width: calc(33% - 20px);
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.foto-galeria:hover {
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 600px) {
  .foto-galeria {
    width: calc(50% - 20px);
    height: 150px;
  }
}

/* Botão voltar */
.btn-voltar {
  display: inline-block;
  margin: 30px;
  text-decoration: none;
  padding: 10px 15px;
  background-color: #e91e63;
  color: white;
  border-radius: 6px;
  font-weight: bold;
}

.btn-voltar:hover {
  background-color: #c2185b;
}

/* ================= MODAL ================= */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.modal-content {
  width: 90vw;
  height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* ================= WHATSAPP ================= */

/* ================= BOTÕES CONTATO HEADER ================= */



.header-contato {
  display: flex;
  align-items: center;
  margin-left: auto; /* empurra tudo para a direita */
}

/* Botão WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

/* espaço EXTRA entre WhatsApp e Instagram */
.btn-whatsapp {
  margin-right: 24px; /* <<< ISSO resolve seu pedido */
}

.espaco_redes {
  margin-right: 20px;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Botão Instagram */
.btn-instagram {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.btn-instagram img {
  width: 20px;
  height: 20px;
}

.btn-instagram:hover {
  transform: scale(1.12);
}


@media (max-width: 768px) {
  .header-contato {
    gap: 12px;
  }

  .btn-whatsapp {
    padding: 8px 14px;
    font-size: 13px;
    margin-right: 16px; /* menor no mobile */
  }

  .btn-instagram {
    width: 36px;
    height: 36px;
  }

  .btn-instagram img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 768px) {

  /* Header compacto */
  .header {
    padding: 6px 12px;
  }

  /* Navbar simples e em linha */
  .navbar {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  /* SOME com o título no mobile */
  .logo-link {
    display: none;
  }

  /* Logo imagem menor */
  .logo-img {
    width: 42px;
    height: 42px;
  }

  /* Remove espaçamentos inúteis */
  .espaco,
  .espaco_redes {
    display: none;
  }

  /* Contato sempre visível e compacto */
  .header-contato {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
  }

  /* WhatsApp vira compacto */
  .btn-whatsapp {
    padding: 6px 10px;
    font-size: 12px;
    margin-right: 0;
    white-space: nowrap;
  }

  /* Instagram compacto */
  .btn-instagram {
    width: 34px;
    height: 34px;
  }

  .btn-instagram img {
    width: 16px;
    height: 16px;
  }

  /* Menu hambúrguer visível */
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
  }
}



