
/* Estilos gerais da página */ body { font-family: sans-serif; } h1, h2 { color: #28a745; /* Verde */ } /* Seção de escolha do ambiente */ .ambientes { display: flex; justify-content: space-around; margin-top: 20px; } .ambiente { width: 30%; /* Ajuste conforme necessário */ text-align: center; border: 1px solid #ccc; padding: 20px; cursor: pointer; } .ambiente img { max-width: 100%; height: auto; } .ambiente h3 { margin-top: 10px; } /* Seção do mapa interativo */ #mapa-interativo { width: 100%; height: 400px; /* Ajuste conforme necessário */ border: 1px solid #ccc; margin-top: 20px; position: relative; /* Para posicionar os elementos arrastáveis */ } /* Estilos dos elementos arrastáveis (imagens) */ .elemento-arrastavel { width: 100px; /* Ajuste conforme necessário */ height: auto; position: absolute; cursor: move; } /* Editor de texto */ #editor-texto { margin-top: 20px; } #editor-texto textarea { width: 100%; height: 200px; padding: 10px; border: 1px solid #ccc; } /* Botões */ button { background-color: #007bff; /* Azul */ color: white; padding: 10px 20px; border: none; cursor: pointer; }
