:root {
  --cor-fundo: #2c2d2dec;
  --cor-texto: #1b1b1b;
  --cor-branco: #ffffff;
  --cor-destaque: #ff6600;
  --cor-destaque-hover: #e25600;
}

/* ==== GERAL ==== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
}
.container {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--cor-fundo);
}

/* ==== TOPO ==== */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background-color: #1b1b1b;
  color: var(--cor-branco);
  flex-wrap: wrap;
}

.logo img {
  height: 80px;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
}

.nome-empresa {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--cor-destaque);
  letter-spacing: 1px;
}

/* ==== IMAGEM DE TOPO ==== */
.foto {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foto-overlay {
  position: absolute;
  text-align: center;
  color: var(--cor-branco);
  z-index: 2;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}

.foto h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.foto h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.botao-whats {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--cor-destaque);
  color: var(--cor-branco);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.botao-whats:hover {
  background-color: var(--cor-destaque-hover);
}

/* ==== CONTEÚDO ==== */
.corpo {
  background-color: #e4e7eb;
  padding: 40px 20px;
}

.folders h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--cor-destaque);
}

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

.card {
  background-color: var(--cor-branco);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

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

.card a {
  display: block;
  text-align: center;
  background-color: var(--cor-destaque);
  color: var(--cor-branco);
  padding: 15px 0;
  text-decoration: none;
  font-weight: 600;
}

.card a:hover {
  background-color: var(--cor-destaque-hover);
}

/* ==== RODAPÉ ==== */
footer {
  background-color: #1b1b1b;
  color: var(--cor-branco);
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

footer .dev a {
  color: var(--cor-destaque);
  text-decoration: none;
}

footer .dev a:hover {
  color: var(--cor-destaque-hover);
}

/* ==== RESPONSIVO ==== */
@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
  .nome-empresa {
    font-size: 1.5rem;
  }
  .foto {
    height: 400px;
  }
  .foto h1 {
    font-size: 1.5rem;
  }
  .foto h2 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo {
    flex-direction: column;
    padding: 15px;
  }
  .logo img {
    height: 55px;
  }
  .nome-empresa {
    font-size: 1.3rem;
    text-align: center;
  }
  .foto {
    height: 350px;
  }
  .foto-overlay {
    padding: 15px;
  }
  .botao-whats {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
