/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Definições globais */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
    background-image: url('entregador.jpg'); /* Imagem de fundo */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Deixa o fundo fixo */
}

/* Cabeçalho e Navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 58, 138, 0.8); /* Azul escuro com transparência */
    padding: 20px 0;
    z-index: 1000;
}

.logo {
    width: 100px;
    height: 50px;
    position: absolute;
    left: 700px;
    top: 50%;
    transform: translateY(-50%);
}

.header-container {
    display: flex;
    justify-content: flex-end; /* Menu à direita */
    align-items: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra no texto */
}

nav ul li a:hover {
    color: #f7f7f7;
}

/* Seções */
.section {
    padding: 100px 20px; /* Aumentei o padding para compensar o cabeçalho fixo */
    text-align: center;
    color: #fff;
}

.section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    font-family: 'Arial', sans-serif;
    color: #1e3a8a; /* Azul claro principal para os títulos */
    text-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3); /* Sombra sutil nos títulos */
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #00ffff; /* Azul mais claro para o texto do parágrafo */
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4); /* Sombra leve nos parágrafos */
}

/* Botões */
.btn {
    background-color: #1e3a8a;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    display: inline-block;
    margin: 10px 0;
    transition: background-color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Sombra no texto dos botões */
}

.btn:hover {
    background-color: #2563eb; /* Azul mais claro */
}

/* Botões do App */
.app-buttons {
    margin-top: 20px;
}

.app-buttons .btn {
    margin: 10px;
}

/* Formulário */
input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

textarea {
    height: 150px;
}

/* Rodapé */
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); /* Sombra no texto do rodapé */
}
