@charset "UTF-8";

/* ---------------- RESET & FONTES ---------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

body {
  font-family: 'Lora', serif;
  color: #000;
  background: #000;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ---------------- HEADER ---------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo img {
  height: 75px;
  width: 120px;
}

/* ---------------- NAV MENU DESKTOP ---------------- */
nav .menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.menu a {
  position: relative;
  color: #ffffffb2;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 1px;
  font-weight: bold;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: rgba(252, 252, 252, 0.61);
  transition: width 1s ease;
}

.menu a:hover {
  color: rgba(127, 255, 212, 0.767);
}

.menu a:hover::after {
  width: 100%;
}

/* ---------------- BOTÃO HAMBURGUER ---------------- */
.hamburguer {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  margin-left: 50%;
}

#hamburguer:hover {
  color: darkgray;
  transition-duration: 1s;
}

#hamburguer:active {
  color: aquamarine;
  font-size: 25px;
  transition-duration: 10ms;
}

/* ---------------- HERO ---------------- */
.hero {

  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  padding: 20px;
  letter-spacing: 2px;

  padding-top: 120px;
  box-sizing: border-box;

}


/* ---------------- SOBRE ---------------- */
.sobre {
  
  display: flex;
  flex-wrap: wrap;
  padding: 100px 60px;
  padding-top: 20vh;
  gap: 40px;
  /* background: #050505; */
  /* background: linear-gradient(to bottom, #000000, #1a1a1a); */
 background: linear-gradient(135deg, #000000, #0a1a2f); 
 




}

.sobre .texto {
  flex: 1;
  min-width: 280px;
}

.sobre h2 {
  color: #ccc;
  font-family: 'Playfair Display', sans-serif;
  font-size: 30px;
  margin-bottom: 20px;
  padding-top: 3vh;
   position: relative;
  display: inline-block;
  
}
.sobre h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: #ffffff52;
  border-radius: 2px;
}

  
  


.sobre p {
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  color: #ffffffab;
  text-indent: 1em;
  line-height: 2em;
  
  
  
  
}

/* ---------------- SLIDESHOW ---------------- */
.slideshow {
  flex: 1;
  position: relative;
  max-width: 500px;
}

.slides img {
  width: 100%;
  display: none;
  border-radius: 4px;
  box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.055);
  border-radius: 20px;
}

.slides img:first-child {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.267);
  border: none;
  color: #fff;
  padding: 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}


.prev { left: 10px; }
.next { right: 10px; }

.prev:hover,.next:hover{  
  background-color: rgba(0, 0, 0, 0.671);
  transition-duration: 0.5s;
}

/* ---------------- PORTFÓLIO ---------------- */
.portfolio {
  padding: 100px 0px;
  padding-top: 20vh;
  text-align: center;
  background: #000;
  color: #f8f8f8;
  padding-bottom: 10%;
}
.portfolio-header {
  padding: 0 60px; /* Adiciona padding somente no header do portfólio */
}

.portfolio h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.589);
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  
  overflow: hidden;
}

.carousel-track {
 
   display: flex; 
  height: 100%;
  transition: transform 0.8s ease-in-out;

  
}

.carousel-track img {
  flex: 0 0 33.333%; 
  
  width: 100%;
   height: 100%; 
  
  aspect-ratio: 3/4;
  object-fit: cover;
 
}

.home-btn {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.575);
  color: rgb(255, 251, 251);
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 30px;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s;
}

.home-btn:hover {
  background: rgba(0, 0, 0, 0.568);
}

.home-btn.prev { left: 20px; }
.home-btn.next { right: 20px; }

.carousel-track img:hover {
  filter: grayscale(0%);
}

/* ---------------- PORTFÓLIO CARDS ---------------- */
.cards-carousel {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.cards-track {
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
  transition: transform 0.5s ease-in-out;
}

.card {
  width: calc(33.333% - 20px);
  flex-shrink: 0;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.199);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.card h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2vw;
  margin: 15px 15px 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.781);
}

.card p {
  font-family: 'Open Sans';
  font-style: italic;
  font-size: 2vw;
  margin: 0 15px 15px;
  color: #cccccca1;

}
        /*--------- GRADIENTE TEXT CARDS --------*/


.portfolio-btn {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.288);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  z-index: 10;
  transition:  background-color 0.3s;
}

.portfolio-btn:hover {
  background: rgba(0, 0, 0, 0.767);
}

.prev-btn { left: -10px; }
.next-btn { right: -10px; }

.contato-redes, .contato-form-section {
    padding: 80px 50px;
    text-align: center;
    background: #000;
    color: #ffffffd8;
    padding-top: 20%;
    
}



.contato-redes h1,  .contato-form-section h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    padding-top: 15%;
}
.contato-form-section { 
  padding-top: 0px;
}

.contato-redes p.subtitulo, .contato-form-section p.subtitulo {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 40px;
}

.contato-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contato-card {
    background: #111;
    padding: 30px 20px;
    border-radius: 12px;
    width: 200px;
    height: 200px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.contato-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.contato-card p {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 5px;
}

.btn-contato {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-insta {
    background: #c088f8;
    color: #000;
}

.btn-insta:hover {
    background: #ae68fa;
}

.btn-whats {
    background: #81ee81;
    color: #000;
}

.btn-whats:hover {
    background: #56d356;
}

/* ---------------- ESTILOS DE FORMULÁRIO (CORRIGIDOS) ---------------- */
#contactForm {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #fff; /* Garante que a label seja visível */
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #222;
    color: #fff; /* Garante que o texto digitado seja visível */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7fffd4;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    padding: 15px 25px;
    background-color: #7fffd4;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background-color: #5ed6b3;
    transform: translateY(-2px);
}
/* ---------------- RESPONSIVIDADE ---------------- */
@media (max-width: 1023px) {
  .carousel-track img {
    flex: 0 0 50%;
    height: auto;
    max-height: 85vh;
    
   }
   .contato-redes { 
    padding-top: 30%;
    
   }
  

}

@media (max-width: 768px) {
  header { 
    padding: 15px 20px;} 
    .contato-redes{ 
      padding-top: 30%;
    }

  .hero { 
    padding-top: 100px;
    font-size: 24px; }

  .sobre { 
    flex-direction: column; 
    align-items: center; }

    /* Foto primeiro */
  .slideshow {
    order: 1;
    margin-bottom: 20px;
  }
  .sobre .texto {
    order: 2;
  }

  .carousel-track
   img { 
    width: 200px; 
  }

  nav .menu { display: none; }
  .hamburguer { display: block; }

  nav .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100vh;
    background: black;
    flex-direction: column;
    padding: 20px;
    transition: left 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
  }

  nav a { margin-top: 20%; }

  nav .menu.active {
    left: 0;
    display: flex;
  }

  .menu a {
    opacity: 0;
    transform: translateY(10px);
    animation: slideIn 0.4s ease forwards;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #333;
    font-size: 2.5vw;
  }

  .menu.active a:nth-child(1) { animation-delay: 0.1s; }
  .menu.active a:nth-child(2) { animation-delay: 0.2s; }
  .menu.active a:nth-child(3) { animation-delay: 0.3s; }
  .menu.active a:nth-child(4) { animation-delay: 0.4s; }

  /* Ajuste dos cards: 2 no mobile */
  .card { width: calc(50% - 20px); }
}

/* ---------------- ANIMAÇÕES ---------------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


footer{ 
  text-align: center;
  background-color: #000000;
  color: white;
  width: 100%;
  padding: 50px;
  margin-top: -30px;
}
footer a{ 
  color: #7fffd4;
}
footer a:hover{ 
  color: rgba(0, 225, 255, 0.404);
}


#btnTopo {
  display: none; /* escondido até rolar */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 50%;
  transition: 0.3s;
}

#btnTopo:hover {
  background-color: #555;
}

