/* === QUIÉNES SOMOS === */

.qs-hero {
    background: linear-gradient(135deg, #a21caf, #7e22ce);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.qs-hero h1 {
    font-size: 2.5rem;
    font-family: 'Pacifico', cursive;
    margin-bottom: 12px;
}

.qs-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* MISIÓN Y VISIÓN */
.qs-mv {
    display: flex;
    gap: 32px;
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.qs-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(162,28,175,0.1);
    text-align: center;
}

.qs-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.qs-card h2 {
    color: #7e22ce;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.qs-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* GALERÍA */
.qs-galeria {
    background: #fdf4ff;
    padding: 60px 40px;
    text-align: center;
}

.qs-galeria h2 {
    color: #7e22ce;
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.qs-fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.qs-fotos-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}

.qs-fotos-grid img:hover {
    transform: scale(1.02);
}

.qs-foto-placeholder {
    background: white;
    border: 2px dashed #d8b4fe;
    border-radius: 16px;
    padding: 60px 20px;
    color: #a855f7;
    grid-column: 1 / -1;
}

.qs-foto-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.qs-foto-placeholder p {
    font-size: 1.1rem;
    color: #7e22ce;
}

/* UBICACIÓN */
.qs-ubicacion {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.qs-ubicacion h2 {
    color: #7e22ce;
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.qs-mapa-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    margin-bottom: 32px;
}

.qs-mapa-placeholder {
    background: #fdf4ff;
    border: 2px dashed #d8b4fe;
    border-radius: 16px;
    padding: 60px 20px;
    color: #7e22ce;
}

.qs-mapa-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.qs-mapa-placeholder p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.qs-mapa-placeholder small {
    color: #a855f7;
    font-size: 0.9rem;
}

.qs-contacto {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.qs-contacto p {
    background: white;
    padding: 14px 24px;
    border-radius: 999px;
    box-shadow: 0 2px 12px rgba(162,28,175,0.1);
    color: #555;
    font-size: 0.95rem;
}

.qs-contacto a {
    color: #7e22ce;
    font-weight: bold;
    text-decoration: none;
}
