/* Estilo geral */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f2f7ff;
    color: #003d66;
}

/* Cabeçalho */
header {
    background-color: #2c3e50;
    color: #2c3e50;
    padding: 1px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.header-logo {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 15px;
}

.logo-site {
    width: 65px;
    height: 65px;
    border-radius: 50%; 
    object-fit: cover;
    border: 2px solid white;
}

.titulo-site h1 {
    margin: 0;
    font-size: 32px;
    color: white;
}

.titulo-site p {
    margin: 0;
    font-size: 15px;
    opacity: 0.9;
    color: #e3eaff;
}

/* Menu */
nav {
    background-color: #4d657e;
    padding: 12px 0;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 28px;
}

nav a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

nav a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* Botão DOE AQUI */
.doe-btn {
    background-color: #00a2ff;
    padding: 10px 18px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.doe-btn:hover {
    background-color: #0083cc;
}

/* Seções gerais */
section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 15px #b9d6ff;
}

h1 {
    color: #fff;
}

h2{
    color: #2c3e50;
}
/* 🔹 HERO */
.hero {
    text-align: center;
    font-size: 1.2rem;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1150px;
    padding: 5px 120px;
}

/* Botão */
.login-header-btn {
    background: #00a2ff;
    padding: 10px 18px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.4);
    margin-left: auto;
}

.login-header-btn:hover {
    background: #0088d1;
    transform: translateY(-2px);
    box-shadow: 0 0 14px rgba(0, 162, 255, 0.6);
}

/* ONGs em Destaque */
.destaques {
    text-align: center;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.card {
    background: white;
    width: 270px;
    border-radius: 12px;
    box-shadow: 0 0 12px #b9d6ff;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 18px #8ec3ff;
}

.card img {
    width: 100%;
    height: 165px;
    object-fit: cover;
}

.card h3 {
    margin: 15px 0 5px;
    color: #003b80;
}

.card p {
    padding: 0 15px;
    color: #003d66;
}

.card .btn {
    display: inline-block;
    margin: 15px 0;
    padding: 8px 14px;
    background: #0a6cff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.card .btn:hover {
    background: #084c9e;
}

/* 🔹 Relatos Recentes */
.relatos {
    background-color: #e8f2ff;
    border: 2px solid #c7dfff;
}

.relato-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px auto;
    box-shadow: 0 0 12px #b9d6ff;
    max-width: 700px;
}

.relato-box h3 {
    margin-bottom: 8px;
    color: #285990;
}

.link {
    text-decoration: none;
    font-weight: bold;
    color: #0a6cff;
    transition: 0.3s;
}

.link:hover {
    color: #084c9e;
    text-decoration: underline;
}

body {
    background: linear-gradient(to bottom right, #dce9ff, #bcd6ff);
}
  /* Container central */
  .login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

/* Card estilo vidro (glassmorphism) */
.login-box {
    width: 360px;
    padding: 35px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 18px #9fc3ff;
    animation: fadeIn 0.5s ease-in-out;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.login-box h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 26px;
}

.login-box input {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #bcd6ff;
    border-radius: 8px;
    background: #f7faff;
    outline: none;
    color: #003d66;
    font-size: 15px;
    transition: 0.3s;
}

.login-box input:focus {
    border-color: #0a6cff;
    box-shadow: 0 0 8px #9ac7ff;
}

.login-box button {
    width: 95%;
    padding: 12px;
    background: #0a6cff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.login-box button:hover {
    background: #084c9e;
}

.login-links {
    margin-top: 15px;
}

.login-links a {
    color: #0a6cff;
    text-decoration: none;
    display: block;
    margin-top: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.login-links a:hover {
    text-decoration: underline;
    color: #084c9e;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    margin-top: 40px;
}

.cadastro-box {
    width: 420px;
}

/* Deixar select com o mesmo estilo dos inputs */
.login-box select {
    width: 95%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #bcd6ff;
    border-radius: 8px;
    background: #f7faff;
    outline: none;
    color: #003d66;
    font-size: 15px;
    transition: 0.3s;
}

.login-box select:focus {
    border-color: #0a6cff;
    box-shadow: 0 0 8px #9ac7ff;
}

/* Campo duplo para senha e confirmação lado a lado em telas maiores */
.campo-duplo {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.campo-duplo input {
    width: 100%;
}

/* Termos */
.termos {
    text-align: left;
    font-size: 13px;
    margin-top: 10px;
    color: #003d66;
}

.termos input[type="checkbox"] {
    margin-right: 6px;
}

/* Mensagem de feedback abaixo do formulário (para JS futuramente) */
.mensagem-cadastro {
    margin-top: 10px;
    font-size: 14px;
}

/* Mensagens de sucesso/erro (opcional, se for usar com JS) */
.mensagem-cadastro.sucesso {
    color: #1e7a2f;
}

.mensagem-cadastro.erro {
    color: #b30000;
}

/* Responsivo: em telas menores, as senhas voltam a ficar empilhadas */
@media (max-width: 480px) {
    .cadastro-box {
        width: 95%;
        padding: 25px;
    }

    .campo-duplo {
        flex-direction: column;
    }
}