:root {
  --rosa-claro: #ff8080;
  --rosa-escuro: #ff4d4d;
  --bege-claro: #f8f3f2;
  --preto: #3e2f2f;
  --verde-whatsapp: #25d366;
  --dourado-claro: #d4af37;
}

/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bege-claro);
  color: var(--preto);
  padding-top: 70px;
}

a {
  text-decoration: none;
}

/* HEADER */
.topo {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--rosa-claro);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.marca {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.icone-circulo {
  background-color: var(--rosa-escuro);
  border: 2px solid var(--dourado-claro);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

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

/* Menu */
.menu ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.menu a {
  color: white;
  font-weight: 500;
}

.menu a:hover,
.menu a.ativo {
  color: var(--preto);
}

/* Botão menu hamburguer */
.btn-menu {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

/* PROJETOS */
.projetos-reais {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.projetos-reais h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.card-projeto {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: left;
}

.card-projeto + .card-projeto {
  margin-top: 2rem;
}

.previa-site {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.card-projeto h3 a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--preto);
}

.card-projeto h3 a:hover {
  color: var(--rosa-escuro);
}

.card-projeto p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.botao-visitar {
  background-color: var(--verde-whatsapp);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

.botao-visitar:hover {
  background-color: #1ebe5d;
}

.ver-mais {
  background-color: var(--rosa-escuro);
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 1rem 0;
}

.texto-completo {
  display: none;
  margin-top: 1rem;
}

.texto-completo.mostrar {
  display: block;
}

/* RODAPÉ */
.rodape {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #eee;
  background-color: var(--bege-claro);
}

.rodape p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
}

.rodape a {
  color: #666;
}

.rodape a:hover {
  color: var(--rosa-escuro);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .btn-menu {
    display: block;
    position: absolute;
    top: 12px;
    right: 20px;
  }

  .topo {
    position: relative;
  }

  .menu ul {
    display: none;
    flex-direction: column;
    background-color: var(--rosa-claro);
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 0 0 8px 8px;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }

  .menu ul.ativo {
    display: flex;
  }

  .menu ul li {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .menu {
    position: relative;
  }

  .rodape {
    font-size: 0.8rem;
    padding: 1rem 1rem;
    line-height: 1.4;
  }

  .rodape a {
    margin: 0 0.2rem;
    display: inline-block;
  }
}
