/* Fonte e reset */
@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inclusive Sans', sans-serif;
  background: #101010;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Cabeçalho */
header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #101010;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 2rem;
      z-index: 1000;
     /* border-bottom: 1px solid #222; */
    }

header .logo img {
  height: 55px;
  transition: height 0.3s ease, transform 0.3s ease;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  transition: gap 0.3s ease;
}

nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #d7ab2d;
}

/* Ícones sociais */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: #f0f0f0;
  font-size: 1.3rem;
  transition: font-size 0.3s ease, color 0.3s ease;
}

.social-icons a.instagram:hover {
  color: #e1306c;
}

.social-icons a.whatsapp:hover {
  color: #25d366;
}

/* Cabeçalho encolhido */
header.scrolled {
  padding: 0.5rem 2rem;
  background: rgba(16,16,16,0.95);
  backdrop-filter: blur(6px);
}

header.scrolled .logo img {
  height: 35px;
  transform: scale(0.95);
}

header.scrolled nav ul {
  gap: 1.2rem;
}

header.scrolled .social-icons a {
  font-size: 1.1rem;
}

/* Conteúdo genérico */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 6rem 0;
}

h1, h3 {
  color: #d7ab2d;
  margin-bottom: 1rem;
}
h2{
  color: #d3d3d3;
  margin-bottom: 1rem;
}
h1.centralizado{
  
  color: #d7ab2d;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 82vh; /* ocupa a tela inteira */
  background: url('../imagens/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f0f0f0;
  overflow: hidden;
  font-family: 'Inclusive Sans', sans-serif;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 16, 0.55); /* camada escura */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.5s ease forwards;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d7ab2d;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 300;
  color: #ddd;
}

.btn {
  background: #d7ab2d;
  color: #101010;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  background: #c29a29;
  box-shadow: 0 0 15px #ffd700;
}

/* Animação suave */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}


/* Galeria de portfólio */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.galeria img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

/* Formulário de contato */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea, form button {
  padding: 0.9rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

form input, form textarea {
  background: #1e1e1e;
  color: #f0f0f0;
  border: 1px solid #333;
}

form button {
  background: #d7ab2d;
  color: #101010;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

form button:hover {
  background: #d7ab2d;
}
/* ====== RESPONSIVO ====== */
    @media (max-width: 768px) {
      nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #101010;
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
      }

      nav ul {
        flex-direction: column;
        gap: 1rem;
      }

      nav.active {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }
    }

    /* ====== CONTEÚDO ====== */
    main {
      padding: 100px 20px 20px;
      max-width: 1200px;
      margin: auto;
    }

/* Rodapé 
footer {
  text-align: center;
  padding: 1.5rem;
  background: #000;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 3rem;
}
.footer-logo{
  height: 60px;
}
.footer-social a{
  color: #f0f0f0;
  font-size: 1.3rem;
  transition: font-size 0.3s ease, color 0.3s ease;
}


.footer-social a.instagram:hover {
  color: #e1306c;
}

.footer-social a.whatsapp:hover {
  color: #25d366;
}
*/

/* ===== FOOTER ===== */
footer {
  background: #000;
  color: #f0f0f0;
  padding: 1.5rem 1rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: left;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 50px;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  justify-content: right;
  flex: 1;
}

.footer-social a {
  color: #f0f0f0;
  font-size: 2rem;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a.instagram:hover {
  color: #e1306c;
  transform: scale(1.2);
}

.footer-social a.whatsapp:hover {
  color: #25d366;
  transform: scale(1.2);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-nav a:hover {
  color: #ffd700;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
}
/* ===== ABOUT PAGE ===== */
.about-section {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

/* Foto */
.about-photo {
  width: 100%;
  margin: 0;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

/* Conteúdo */
.about-content h1 {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 0.6rem;
}

.about-content .lead {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-content p {
  color: #e6e6e6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.link-inline {
  color: #ffd700;
  text-decoration: underline;
}

/* CTAs */
.about-cta {
  margin-top: 1.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}



/* Interação da foto */
.about-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

/* Ajustes responsivos */
@media (max-width: 980px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }

  .about-photo {
    height: 420px;
  }
}

@media (max-width: 520px) {
  .about-photo {
    height: 300px;
    border-radius: 8px;
  }

  .about-content h1 {
    font-size: 1.6rem;
  }

  .about-content .lead {
    font-size: 1.5rem;
  }

}