/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #0a0a0a;
  line-height: 1.6;
}

/* ===== GLOBALS ===== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 700;
  color: #fff;
}

p {
  font-weight: 300;
  color: #ddd;
}

/* ===== HEADER ===== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease;
  height: 130px; /* força altura padrão */
  overflow: hidden; /* impede que a logo “estoure” a altura */
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%; /* garante centralização vertical */
  padding: 0 1rem;
}


/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 200px; /* define tamanho visível */
  width: auto;
  object-fit: contain;
  display: block;
}
.logo img:hover {
  transform: scale(1.05);
}

/* MENU DESKTOP */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.nav a:hover {
  color: #6b5bff;
}

/* MENU MOBILE (HAMBURGUER) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .nav.show {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }

  .header .container {
    padding: 0.8rem 0;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #111, #0a0a0a);
  padding-top: 70px; /* exato mesmo valor da altura do header */
  margin-bottom: 0;  /* elimina espaçamento inferior oculto */
}



.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #a870ff;
}
.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn {
  background: #6b5bff;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}
.btn:hover {
  background: #a870ff;
  transform: translateY(-3px);
}

/* ===== SEÇÕES ===== */
section {
  padding: 4rem 0;
}

.sobre, .planos, .clientes, .fotografos, .diferenciais {
  background: #111;
  text-align: center;
}

#fotografos .container{
    display: block;
    padding: 5px;
    }

#sobre {
  margin-top: -2rem; /* puxa um pouco pra cima */
}    


/* ===== PLANOS ===== */
.planos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.plano-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  width: 280px;
  transition: transform 0.3s, border-color 0.3s;
}
.plano-card:hover {
  transform: translateY(-5px);
  border-color: #6b5bff;
}
.plano-card.destaque {
  background: linear-gradient(145deg, #6b5bff, #a870ff);
  color: #fff;
}
.plano-card h3 {
  margin-bottom: 1rem;
}
.plano-card .preco {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

/* ===== CLIENTES ===== */
.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.logos img {
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s;
  width: 50%;
  max-width: 300px;
}
.logos img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* ===== FOTÓGRAFOS ===== */
.fotografos {
  background: #0f0f0f;
  text-align: center;
  padding: 6rem 0;
}

.fotografos .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.fotografos h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #a870ff;
}

.fotografos p {
  color: #ddd;
  font-weight: 300;
  margin-bottom: 2.5rem; /* espaçamento entre o texto e o botão */
  line-height: 1.6;
}

.fotografos .btn {
  display: inline-block;
  position: relative;
  margin-top: 1rem;
  background: #6b5bff;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.fotografos .btn:hover {
  background: #a870ff;
  transform: translateY(-3px);
}


/* ===== CONTATO (FORMULÁRIO) ===== */
.contato {
  background: #111;
  text-align: center;
  padding: 5rem 0;
}

.contato h2 {
  color: #a870ff;
  margin-bottom: 1rem;
}

.contato p {
  color: #ccc;
  margin-bottom: 2rem;
}

#contatoForm {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  color: #ddd;
  margin-bottom: 0.3rem;
}

input, select {
  width: 100%;
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #444;
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
}

input:focus, select:focus {
  border-color: #6b5bff;
  outline: none;
}

.btn-enviar {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #6b5bff, #a870ff);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.btn-enviar:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #a870ff, #6b5bff);

}
/* ===== MENSAGEM DE STATUS ===== */
.mensagem-status {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mensagem-status.sucesso {
  color: #6bff91;
}

.mensagem-status.erro {
  color: #ff6b6b;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  padding: 3rem 0;
  color: #ccc;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 240px;
}

.footer-logo img {
  margin-left: -23px;
  height: 100px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-contato {
  flex: 1;
  min-width: 240px;
}

.footer-contato h4 {
  color: #a870ff;
  margin-bottom: 1rem;
}

.footer-contato ul {
  list-style: none;
  padding: 0;
}

.footer-contato li {
  margin-bottom: 0.6rem;
}

.footer-contato a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contato a:hover {
  color: #a870ff;
}

.footer-contato i {
  margin-right: 0.6rem;
  color: #6b5bff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #888;
}



/*  ====== ANIMAÇÕES ======*/

section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
section.show {
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle.active span.rotate1 {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span.hide {
  opacity: 0;
}
.menu-toggle.active span.rotate2 {
  transform: rotate(-45deg) translate(6px, -6px);
}
