body {
  background-size: cover;        /* 🔥 Ajusta a imagem proporcionalmente */
  background-repeat: no-repeat;  /* 🔥 Evita repetição */
  background-position: center;   /* 🔥 Centraliza a imagem em qualquer tela */
  background-attachment: fixed;  /* 🔥 Mantém a imagem fixa (opcional) */
  background-color: #f2f2f2;     /* Caso a imagem não cubra > cor fica */
  
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Botão de voltar */
.btn-voltar {
  position: fixed;
  top: 10px;
  left: 10px;
  font-size: 1.8rem;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
  z-index: 10;
}
.btn-voltar:hover {
  color: #2b3d9f;
}

/* Correção do espaçamento entre botões */
.btn-acao {
    display: block;
    padding: 20px 15px;
    margin: 8px 0;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: black;
}

.btn-acao:hover {
    background: #fff;
    border-color: black;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: black;
}

.btn-acao i {
    font-size: 24px;
    margin-bottom: 10px;
    color: black;
}

/* Espaçamento entre as linhas */
.row.g-3 {
    margin: 0 -8px;
}

.row.g-3 > [class*="col-"] {
    padding: 8px;
}

/* Logo do empreendimento */
.logo-empreendimento {
    max-width: 520px;
    margin-bottom: 30px !important;
}

.logo-empreendimento img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Container principal */
.container {
    padding: 20px;
    max-width: 1200px;
}

/* Footer */
footer {
    margin-top: 50px !important;
    padding: 20px;
    color: #666;
}

/* Botão voltar */
.btn-voltar {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-voltar:hover {
    background: #fff;
    transform: scale(1.1);
    color: #007bff;
}

/* Responsivo */
@media (max-width: 768px) {
    .btn-acao {
        padding: 15px 10px;
        min-height: 100px;
        font-size: 12px;
    }
    
    .btn-acao i {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
}

footer {
  color: #fff;
}

/* Loader */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

#loader-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#plantas img, #imagem img {
  width: 100%;
}