/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Containers */
  .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    padding: 60px 0;
  }
  
  /* Hero */
  .hero {
    background: linear-gradient(to bottom, #222, #111);
    padding: 100px 0;
  }
  
  
  .hero h1 span {
    display: block;
    font-size: 7rem;
    letter-spacing: 2px;
  }
  
  .hero p {
    margin: px 0;
    font-size: 0.8rem;
    color: #ccc;
  }
  
  .nav-links {
    margin-top: 20px;
  }
  
  .nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #f1c40f;
  }
  
  /* Projects */
  /* Carrossel */
.carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
  }
  
  /* Botões */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: background 0.3s;
  }
  
  .carousel-btn:hover {
    background: rgba(255,255,255,0.8);
    color: #000;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
  
  .projects {
    background: #1a1a1a;
  }
  
  .projects h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .projects h3 {
    font-size: 1rem;
  }

  .projects p {
    font-size: 0.7rem;
  }
  
  
  .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    border: none;
    background: #fff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #f1c40f;
    color: #111;
  }
  
/* Formulário */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #222;
    color: #fff;
  }
  
  .contact-form textarea {
    resize: none;
    min-height: 120px;
  }
  
  .contact-form button {
    border-radius: 5px;
  }
  

  
  
  /* Footer */
  footer {
    text-align: center;
    padding: 30px;
    font-size: 1rem;
    background: #0d0d0d;
    color: #aaa;
  }
  footer {
    text-align: center;
    padding: 30px;
    font-size: 1rem;
    background: #0d0d0d;
    color: #aaa;
  }
  
  footer a.instagram-link img {
    width: 30px;
    margin-top: 10px;
    filter: grayscale(100%);
    transition: 0.3s;
  }
  
  footer a.instagram-link img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
  }
  /* social links*/
  .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
  }
  
  .social-link img {
    width: 35px;
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .social-link img:hover {
    opacity: 1;
    transform: scale(1.1);
  }
  

  /* Modal de galeria */
.modal {
  display: none; /* oculto por padrão */
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.9);
}

/* Conteúdo (imagens centralizadas) */
.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 90%;
  margin: auto;
}

.modal-content img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s;
}

.modal-content img:hover {
  transform: scale(1.02);
}

/* Botão fechar (X) */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #f1c40f;
}

/* Pop-up */
.popup {
  display: none; /* escondido por padrão */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  color: #fff;
  animation: fadeIn 0.3s ease;
}

.popup-content h2 {
  margin-bottom: 10px;
  color: #f1c40f;
}

/*  pop up*/
.popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.popup-close:hover {
  color: #f1c40f;
}

/* Animação */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}
 
