/* Estilos Generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}

/* Encabezado */
.header-voluntariado {
    text-align: center;
    background: linear-gradient(to right, #2c3e50, #3498db);
    color: white;
    padding: 50px 20px;
}

.header-voluntariado h1 {
    margin: 0;
    font-size: 42px;
}

.header-voluntariado p {
    font-size: 18px;
    margin-top: 10px;
}

/* Sección de Tipos de Voluntariado */
.tipos-voluntariado {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 10%;
    gap: 20px;
}

.tipo-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.tipo-card img {
    width: 80px;
    margin-bottom: 15px;
}

.tipo-card h3 {
    margin: 10px 0;
    font-size: 24px;
}

.tipo-card p {
    font-size: 16px;
    color: #555;
}

/* Sección de Testimonios */
.testimonios {
    background: #fff;
    padding: 40px 10%;
    text-align: center;
}

.testimonios h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.testimonio {
    display: inline-block;
    background: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    margin: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonio img {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonio p {
    font-size: 16px;
    color: #333;
    font-style: italic;
}

.testimonio h4 {
    margin-top: 10px;
    font-size: 18px;
    color: #2c3e50;
}

/* Sección de Llamado a la Acción */
.cta {
    background: #3498db;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.boton-voluntariado {
    display: inline-block;
    background: white;
    color: #3498db;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.boton-voluntariado:hover {
    background: #2980b9;
    color: white;
}
