/* --- ESTILO VOLUNTARIADO (BASEADO NO PREMIUM) --- */

/* Hero */
.hero-volunteer {
    background: url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?q=80&w=2074&auto=format&fit=crop') no-repeat center center/cover;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(5, 16, 36, 0.85);
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #00d4ff; /* Ciano Neon */
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.hero-overlay p { color: #e0e0e0; font-size: 1.2rem; max-width: 600px; }

/* --- TEXTO CONVIDATIVO (NOVA SEÇÃO) --- */
.invite-section {
    max-width: 800px;
    margin: 60px auto 40px auto;
    text-align: center;
}

.invite-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--cor-titulo);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Lista de Ícones */
.volunteer-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.volunteer-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.volunteer-list li:hover {
    transform: translateX(10px);
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
}

.icon-check {
    min-width: 40px;
    height: 40px;
    background-color: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.text-check {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.6;
}

.text-check strong {
    color: white;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 5px;
}

/* Wrapper do Form */
.form-wrapper {
    max-width: 900px;
    margin: 0 auto 100px auto;
    position: relative;
    z-index: 2;
}

/* Formulário Sofisticado (Tema Azul/Ciano) */
.vol-form {
    background: #0b1e3b;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-top: 5px solid #00d4ff;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    margin-top: 40px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding-bottom: 10px;
}
.form-section-header:first-child { margin-top: 0; }

.form-section-header i { color: #00d4ff; font-size: 1.5rem; }

.form-section-header h2 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
}

/* Grid */
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.full-width { grid-column: 1 / -1; }
.input-box { display: flex; flex-direction: column; }

.input-box label { color: #aab8c9; font-size: 0.9rem; margin-bottom: 8px; }

/* Inputs */
.vol-form input, .vol-form select, .vol-form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid #2a3d5e;
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.vol-form input:focus, .vol-form textarea:focus {
    border-color: #00d4ff; background: rgba(255,255,255,0.1); outline: none; box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
}

/* Botão Cyan */
.form-footer { margin-top: 40px; display: flex; gap: 20px; }

.btn-cyan {
    background: linear-gradient(135deg, #00d4ff, #007bff);
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    flex: 1;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-cyan:hover { filter: brightness(1.2); box-shadow: 0 0 15px rgba(0, 212, 255, 0.4); }

.btn-outline {
    background: transparent; border: 1px solid #555; color: #aaa;
    padding: 15px 30px; cursor: pointer; border-radius: 4px;
}

/* Tabela */
.volunteers-list { margin-top: 60px; }
.volunteers-list h3 { color: #00d4ff; margin-bottom: 20px; font-family: 'Playfair Display', serif; }

.vol-table {
    width: 100%; border-collapse: collapse; background: #0b1e3b;
    border-radius: 8px; overflow: hidden;
}

.vol-table th, .vol-table td { padding: 20px; text-align: left; border-bottom: 1px solid #1c2e4a; }

.vol-table th {
    background: #07152b; color: #00d4ff; font-weight: normal; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px;
}

.badge-area { background: rgba(0, 212, 255, 0.15); color: #00d4ff; padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; }
.btn-icon { background: none; border: none; cursor: pointer; color: #666; font-size: 1.1rem; margin-right: 10px; transition: 0.2s; }
.btn-icon:hover { color: #00d4ff; }

@media (max-width: 768px) {
    .input-grid { grid-template-columns: 1fr; }
    .volunteer-list li { flex-direction: column; align-items: center; text-align: center; }
}