/* ===== Estilos base ===== */
body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin: 0;
  padding: 0;
  color: #333;
  background: linear-gradient(to right, #d9a7c7, #fffcdc);
}

h1, h2, h3 { color: #5a3e2b; }

.hero {
  background: linear-gradient(to right, #d9a7c7, #fffcdc);
  text-align: center;
  padding: 80px 20px;
  color: #5a3e2b;
}

.foto-perfil img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-top: 20px;
}

.texto-principal {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

ul { list-style: none; padding: 0; margin: 0; }

.btn {
  display: inline-block;
  margin-top: 40px;
  background: #c97b63;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
}
.btn:hover { background: #b06c5a; }

section { padding: 60px 20px; text-align: center; }
section h2 { margin-bottom: 20px; }

.metricas-img {
  max-width: 600px;
  width: 40%;
  border-radius: 10px;
  margin-top: 20px;
}

.metricas-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.galeria {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 300px;
  height: 600px;
  background: plum; /* cor ao redor do mockup */
  padding: 10px;
  border-radius: 8px;
}
.item h3 { margin-bottom: 15px; color: #5a3e2b; }
.item figure { margin: 0; }

.item figure img.galeria-img {
  width: 330px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Mockup + vídeo */
.celular {
  position: relative;
  width: 300px;
  margin: 0 auto;
}
.galeria-img {
  display: block;
  width: 100%;
  height: auto;
}
.galeria-video {
  position: absolute;
  top: 23%;            /* ajuste vertical */
  left: 28%;           /* ajuste horizontal */
  width: 54%;         /* largura proporcional */
  height: 58.8%;        /* altura proporcional */
  border-radius: 5px;  /* cantos arredondados */
  object-fit: cover;    /* vídeo preenche sem distorcer */
}

.portfolio {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.etapas li, .investimentos li { margin: 10px 0; }

.contato form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 20px auto;
}
.contato input, .contato textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.contato button {
  background: #c97b63;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.contato button:hover { background: #b06c5a; }

.icon-link {
  font-size: 32px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 50px;
  height: 50px;
}
.icon-link:hover { color: #b06c5a; }

.footer {
  background: #c97b63;
  color: white;
  text-align: center;
  padding: 40px 20px;
}