/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Importando Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/* Corpo */
body {
    background: #f7f9fc;
    color: #2d3748;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background: #2b6cb0; /* Azul sóbrio */
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header img {
    max-width: 150px;
    height: auto;
}

/* Container principal - Ajustado pra ser flexível */
.container {
    width: 100%; /* Usa toda a largura disponível */
    margin: 30px 0; /* Mantém margens verticais, mas remove centralização */
    padding: 20px;
    text-align: center; /* Mantém o alinhamento padrão, mas pode ser sobrescrito */
}

/* Regras específicas pra checklist (sobrescritas no checklist.php) */
.checklist-container {
    width: 100%; /* Garante que o container da checklist use toda a largura */
    max-width: none; /* Remove qualquer limitação */
    margin: 0; /* Remove margens que centralizam */
    padding: 0; /* Remove padding interno pra maximizar largura */
    text-align: left; /* Alinha à esquerda pra tabelas */
}

/* h1, h2 */
h1, h2 {
    color: #2b6cb0;
    margin-bottom: 20px;
}

h1 { font-size: 2.2em; font-weight: 600; }
h2 { font-size: 1.6em; font-weight: 600; }

/* Hero section */
.hero {
    padding: 40px 20px;
}

.hero p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #4a5568;
}

/* Botões */
.btn {
    display: inline-block;
    background: #4c8bf5; /* Azul suave */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px; /* Menos arredondado */
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
}

.btn:hover {
    background: #c53030; /* Vermelho suave */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Cards */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 300px;
    text-align: left;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #2b6cb0;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.card p {
    color: #4a5568;
    font-size: 1em;
}

/* Formulários */
form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    
    margin: 20px auto;
}

form input, form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
}

form input[type="submit"] {
    background: #4c8bf5;
    color: white;
    border: none;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background: #c53030;
}

/* Listas */
ul {
    list-style: none;
}

ul li {
    font-size: 1.1em;
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

ul li:before {
    content: "✔";
    color: #c53030;
    position: absolute;
    left: 0;
}

/* Animação */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    animation: fadeIn 1s ease-in;
}

/* Responsividade */
@media (max-width: 600px) {
    h1 { font-size: 1.6em; }
    h2 { font-size: 1.3em; }
    .btn { padding: 10px 25px; font-size: 1em; }
    .card { width: 100%; }
}