/* css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f5f5f5;
  color: #333;
}

/*marca d'agua*/
.gallery {
  position: relative;
}

.gallery .photo{
  position: relative;
  display: inline-block;
}

.gallery .photo::after {
  content:"@mayara";
  position: absolute;
  bottom: 6px;
  right: 8px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 15px;
  font-family: Arial, sans-serif;
  text-shadow: 1px 1px 2px rgba (0,0,0,0.6);
}

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 2px;
}

h2{
    text-align: justify;
    margin-bottom: 14px;
    margin: 35px;
}

p{

    margin: 35px;
    text-align: justify;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin-bottom: 14px;
}


/* Navegação */
nav {
  background: #222;
  display: flex;
  justify-content: center;
  gap: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  color: #f5a623;
}

/* Botões de filtro */
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.filter-buttons button {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.filter-buttons button:hover {
  background: #f5a623;
  color: #111;
}

/* Galeria estilo feed */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px;
}
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* Sobre e Contato */
.about, .contact, .social {
  padding: 40px 20px;
  background: #fff;
  margin: 20px;
  border-radius: 10px;
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}
footer a {
  color: #f5a623;
  text-decoration: none;
}

footer img {
  color: #f5a623;
  text-decoration: none;
}
.social {
  margin-left:10px;
}

.social h2{
  margin-bottom: 10px;
}

.social .icons{
  display: flex;
  gap: 30px;
}

.social .icons a {
  display: flex;
  align-items:center;
  gap: 5px;
  margin-left: 0px;
  text-align: left;
  font-size: 13px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.social .icons img{
  width: 30px;
  height: 30px;
}

/* Responsivo */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.4rem;
  }
}
