Skip to main content

Overview

The Hospital Clown program (“Clow de Siloé”) brings therapeutic laughter and emotional support to children at Hospital del Niño through trained clown volunteers who transform hospital environments into spaces of joy and hope.

Mission Statement

From index.html:218-233, the clown program’s philosophy:

“En los pasillos del Hospital del Niño, la risa es medicina. Nuestros clowns hospitalarios transforman momentos de miedo y dolor en instantes de alegría y esperanza. Con nariz roja, sonrisa amplia y corazón generoso, traen algo invaluable: la oportunidad de ser niño otra vez.”

Clown Hero Section

The clown section features a vibrant hero banner with gradient background.

HTML Structure

From index.html:218-234:
<section id="clow" class="clow-hero">
    <h1>🤡 El Clow de Siloé 🤡</h1>
    <p class="clow-tagline">La Magia de la Risa es Nuestra Medicina</p>
    
    <div class="clow-intro">
        <p>
            En los pasillos del Hospital del Niño, la risa es medicina. Nuestros clowns hospitalarios 
            transforman momentos de miedo y dolor en instantes de alegría y esperanza. Con nariz roja, 
            sonrisa amplia y corazón generoso, traen algo invaluable: la oportunidad de ser niño otra vez.
        </p>
        <p>
            No somos performers que buscan aplausos. Somos acompañantes que entienden que en el rostro 
            de cada niño hospitalizado hay universos de emociones. Nuestra misión es simple pero profunda: 
            recordarles que la vida, incluso en los momentos más difíciles, sigue siendo digna de una sonrisa.
        </p>
    </div>
</section>

Clown Hero Styling

The hero section uses a vibrant yellow-to-pink gradient from style.css:638-668:
.clow-hero {
    background: linear-gradient(135deg, var(--amarillo-vibrante), var(--rosa-vibrante));
    padding: 60px 20px;
    text-align: center;
    color: white;
}

Inspirational Quotes Section

The clown section features a grid of inspirational quote cards that animate on hover.

Quote Cards HTML

From index.html:236-261, the quotes section structure:
<section class="inspiration-section">
    <h2>Frases que Nos Inspiran</h2>
    
    <div class="frases-grid">
        <!-- Card 1 -->
        <div class="frase-card">
            <div class="frase-emoji">😊</div>
            <p class="frase-text">"La risa es el camino más corto entre dos personas"</p>
            <p class="frase-author">— Victor Borge</p>
        </div>
        
        <!-- Card 2 -->
        <div class="frase-card">
            <div class="frase-emoji">🌟</div>
            <p class="frase-text">"No cambiamos el diagnóstico, pero sí el pronóstico del día"</p>
            <p class="frase-author">— Siloé Perú</p>
        </div>
        
        <!-- Card 3 -->
        <div class="frase-card">
            <div class="frase-emoji">💖</div>
            <p class="frase-text">"Ser clown es ser el guardián de la esperanza con una sonrisa"</p>
            <p class="frase-author">— Siloé Perú</p>
        </div>
    </div>
</section>

Quote Card Styling

The cards feature hover animations from style.css:267-323:
style.css:267-270
.inspiration-section {
    background: linear-gradient(135deg, var(--amarillo-vibrante), var(--rosa-vibrante));
    padding: 60px 20px;
}
The hover effect includes both vertical movement (translateY(-15px)) and a subtle rotation (rotateZ(-1deg)) for a playful, dynamic feel that matches the clown theme.
The clown program uses the same flip card gallery system as the volunteer program, but with a different color scheme. From index.html:269-286, a clown gallery item:
<div class="galeria-item">
    <div class="galeria-flip-card">
        <div class="galeria-flip-front">
            <img src="./img clow/568201215_18225647026307271_8015100808044120281_n.png" 
                 alt="Risa que transforma">
            <div class="galeria-overlay">
                <p>Risa que Transforma</p>
            </div>
        </div>
        <div class="galeria-flip-back">
            <div class="galeria-historia">
                <p class="historia-titulo">😄 Transformación</p>
                <p class="historia-texto">"Una visita del clown puede cambiar completamente el día de un paciente. Su risa contagia, libera el estrés y abre puertas a la esperanza. En ese instante, el miedo desaparece."</p>
                <p class="historia-autor">— Clow Siloé</p>
            </div>
        </div>
    </div>
</div>
The clown gallery uses a warm color scheme from style.css:1424-1431:
/* Variant for clown gallery */
.galeria-clow {
    background: linear-gradient(135deg, #fff4e6, #ffe8cc);
}

.galeria-clow h2 {
    color: var(--rosa-vibrante);
}

Flip Card Mechanics

The flip cards work identically to the volunteer program. See the Interactive Gallery documentation for full implementation details.
1

User clicks card

JavaScript detects click on .galeria-flip-card
2

Toggle flipped class

Adds or removes .flipped class to trigger CSS transform
3

Card rotates

CSS transform: rotateY(180deg) rotates the card
4

Show back content

Back face with story becomes visible due to backface-visibility: hidden

Clown Application Form

The clown program has its own application form with fields specific to clown volunteers.

Form Structure

From index.html:424-466, the clown application form:
<form class="clow-form" action="https://formsubmit.co/[email protected]" method="POST">
    <!-- Full Name -->
    <div class="form-group">
        <label for="nombre-clow">Nombre Completo *</label>
        <input type="text" id="nombre-clow" name="Nombre Completo" 
               placeholder="Tu nombre" required>
    </div>
    
    <!-- Email -->
    <div class="form-group">
        <label for="email-clow">Correo Electrónico *</label>
        <input type="email" id="email-clow" name="Correo Electrónico" 
               placeholder="[email protected]" required>
    </div>
    
    <!-- Phone -->
    <div class="form-group">
        <label for="telefono-clow">Número de Teléfono *</label>
        <input type="tel" id="telefono-clow" name="Teléfono" 
               placeholder="+51 9 XXXX XXXX" required>
    </div>
    
    <!-- Motivation -->
    <div class="form-group">
        <label for="motivacion-clow">¿Por qué quieres ser un Clown de Siloé? *</label>
        <textarea id="motivacion-clow" name="Motivación" 
                  placeholder="Cuéntanos sobre tu experiencia y por qué crees que puedes traer sonrisas..." 
                  rows="6" required></textarea>
    </div>
    
    <!-- Privacy Acceptance -->
    <div class="form-group checkbox-group">
        <input type="checkbox" id="terminos-clow" name="Aceptación" 
               required style="width: auto;">
        <label for="terminos-clow" style="width: auto; display: inline;">
            Acepto la política de privacidad y el uso de mis datos para la gestión del voluntariado de Siloé.
        </label>
    </div>
    
    <!-- Submit Button -->
    <button type="submit" class="btn-enviar btn-clow-submit">
        ¡SÍ, QUIERO SER CLOWN DE SILOÉ!
    </button>
</form>

Form Field Comparison

FieldVolunteer FormClown FormPurpose
Nombre CompletoFull name
DNIID number (volunteers only)
EmailEmail (clowns only)
TeléfonoPhone number
MotivaciónWhy they want to join
AceptaciónPrivacy acceptance
The clown form requests email instead of DNI, as clown volunteers may need different onboarding communication.

Clown Form Styling

The clown form uses a special gradient submit button from style.css:418-427:
.clow-form-section {
    background: linear-gradient(to bottom, #f4f7f6, #fff4e6);
}

Color Scheme

The clown program uses vibrant, playful colors:
VariableColorUsage
--amarillo-vibrante#FFD700Yellow accent, gradients
--rosa-vibrante#FF69B4Pink accent, gradients
--azul-siloe#29abe2Secondary blue accent

Gradient Examples

background: linear-gradient(135deg, var(--amarillo-vibrante), var(--rosa-vibrante));
/* Yellow to Pink, 135-degree diagonal */

Therapeutic Clowning Philosophy

The clown program emphasizes three core concepts from the HTML:

Connection

“La verdadera magia no está en los trucos, está en la conexión. Cuando un clown mira a los ojos de un niño y sonríe, ocurre la magia.”

Transformation

“No cambiamos el diagnóstico, pero sí el pronóstico del día”

Hope

“Ser clown es ser el guardián de la esperanza con una sonrisa”

Adding New Quote Cards

To add inspirational quotes to the clown section:
1

Locate the quotes grid

Find the .frases-grid container in index.html around line 239.
2

Add new quote card

Copy this structure:
<div class="frase-card">
    <div class="frase-emoji">🎭</div>
    <p class="frase-text">"Your inspiring quote here"</p>
    <p class="frase-author">— Author Name</p>
</div>
3

Choose an emoji

Pick an emoji that represents the quote’s theme (joy, hope, love, etc.).
4

Test responsiveness

The grid automatically adjusts to fit new cards. On mobile, cards stack vertically.
Keep quotes concise (under 25 words) to ensure they display well on mobile devices and don’t overflow the card height.

Responsive Design

The clown section adapts to different screen sizes from style.css:469-494:
@media (max-width: 768px) {
    .clow-hero h1 {
        font-size: 2rem;
    }
    
    .frases-grid {
        grid-template-columns: 1fr;
    }
}
On mobile devices:
  • Hero title reduces from 3rem to 2rem
  • Quote cards stack in a single column
  • Gallery items maintain aspect ratio but reduce in size

Build docs developers (and LLMs) love