<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clone Uber</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
}
header {
background-color: #000;
color: #fff;
padding: 10px;
text-align: center;
}
.map {
height: 400px;
background-color: #ddd;
margin: 20px;
}
.ride-details {
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin: 0 20px;
}
.button {
display: block;
width: 100%;
padding: 10px;
background-color: #000;
color: #fff;
text-align: center;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
margin-top: 10px;
}
.button:hover {
background-color: #333;
}
</style>
</head>
<body>
<header>
<h1>Meu App de Transporte</h1>
</header>
<div class="map">
<!-- O mapa será inserido aqui -->
<p>Mapa (simulação)</p>
</div>
<div class="ride-details">
<h2>Detalhes da Corrida</h2>
<p>Destino: Rua Exemplo, 123</p>
<p>Valor estimado: R$ 25,00</p>
<button class="button">Solicitar Corrida</button>
</div>
</body>
</html>