:root {
  --azul-escuro: #6caf50;
  --verde: #1b998b;
  --branco: #f9f9f9;
  --verde-claro: #33c4a7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--branco);
  color: var(--azul-escuro);
  line-height: 1.6;
}

/* Cabeçalho */
header {
  background: var(--azul-escuro);
  color: var(--branco);
  padding: 15px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.left-placeholder {
  flex: 1;
}

.logo-container {
  flex: 0 0 auto;
  text-align: center;
}

.logo {
  max-height: 60px;
}

nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav .nav-links li a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav .nav-links li a:hover {
  color: #ff009d;
}

.container {
  width: 90%;
  max-width: 1200px;
  height: auto;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
}

.logo-container {
  display: inline-block;
  background: #ffffff; /* retângulo branco */
  border-radius: 10px; /* cantos arredondados (opcional) */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* sombra leve */
}

/* Logo */
.logo-container .logo {
  height: 60px; /* ajusta a altura da logo */
  display: block;
}

/* Título */
header h1 {
  font-size: 28px;
  font-weight: 700;
}

/* Separador */
.separator {
  width: 1px;
  height: 50px;
  background: #ccc;
  margin: 0 20px;
}

/* Memorial Descritivo */
.memorial {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 20px auto;
  //////////////////  background: #f0f8ff;
  border-radius: 10px;
  // box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.memorial .texto-memorial {
  margin: 0 20px;
  display: flex;
  align-items: center;
  height: 100%;
}

.memorial .texto-memorial h3 {
  margin-bottom: 15px;
  color: var(--azul-escuro);
  text-decoration: underline;
}

.memorial .img-memorial {
  text-align: center;
  flex-shrink: 0;
  display: flex;
}

.memorial .img-memorial img {
  max-width: 150px;
  display: block;
  margin: 0 auto;
}

/* Links do Memorial */
.desc-memorial {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 20px auto;
  background: #f0f8ff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  color: black;
}

.desc-memorial .box1,
.desc-memorial .box2 {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}

.desc-memorial .box1 span,
.desc-memorial .box2 span {
  margin-bottom: 10px;
}

.desc-memorial .box2 {
  margin-left: auto;
  text-align: right;
}

/* Texto do Memorial */
.texto-memorial {
  margin-top: 20px;
  line-height: 1.6;
  color: black;
  display: flex;
  flex-direction: column;
}

.texto-memorial p {
  margin-bottom: 15px;
  text-align: justify;
}

.obs-memorial {
  font-weight: bold;
  margin-top: 10px;
}

.proprietario {
  margin-top: 10px;
  text-align: right;
  align-items: center;
}

.proprietario-label {
  font-weight: bold;
  margin-right: 10px;
  font-weight: bold;
}

.proprietario-assinante {
  font-style: italic;
  font-weight: 500;
  margin-left: 50vh;
}

/* Banner */
.banner {
  background: linear-gradient(rgba(13, 27, 42, 0.5), rgba(13, 27, 42, 0.5)),
    url("https://etica-ambiental.com.br/wp-content/uploads/2018/07/2018-08-07-Saiba-mais-sobre-Investigação-ambiental.jpg");
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 2px;
}

.banner-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px 30px;
  border-radius: 15px;
  max-width: 800px;
  text-align: center;
}

.banner-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--azul-escuro);
}

.banner-content p {
  font-size: 22px;
  color: var(--branco);
}

/* Seções */
.section {
  padding: 50px 20px;
  text-align: center;
}

.section h2 {
  margin-bottom: 30px;
}

/* Dark section */
.section.dark {
  background: var(--azul-escuro);
  color: var(--branco);
  padding: 50px 20px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1000px;
}

.section.dark h2 {
  color: #284703;
}

.section.dark a {
  color: black;
  font-weight: bold;
}

/* Grid de Serviços */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: linear-gradient(145deg, var(--verde), var(--verde-claro));
  color: var(--branco);
  padding: 25px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Contato */
#contato a {
  color: #284703;
  text-decoration: none;
  font-weight: bold;
}

#contato a:hover {
  text-decoration: underline;
}

/* Rodapé */
footer {
  background: var(--azul-escuro);
  color: var(--branco);
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

/* Botão WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-btn img {
  width: 38px;
  height: 38px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Footer do memorial */
.footer-memorial {
  background-color: #6caf50;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-box {
  flex: 1;
  min-width: 250px;
}

.footer-box i {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.footer-box p {
  font-size: 15px;
  line-height: 1.5;
}
