/* ===================== ESTILOS BASE ===================== */
.conocenos-section {
    color: #fff;
    padding: 4rem 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    border-top: 2px solid #3b9344;
    border-bottom: 2px solid #3b9344;
}

.conocenos-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #eeb914;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.texto-descripcion{
    text-align: center;

}
.conocenos-section p {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    max-width: 900px;
    margin: 0 auto 2rem auto;
    line-height: 1.8;
    color: #ddd;
}

.conocenos-section .btn {
    font-size: 1.25rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #eeb914;
    color: #000;
    font-weight: 600;
    border: 2px solid #3b9344;
}

.conocenos-section .btn:hover {
    background: #3b9344;
    color: #fff;
    transform: scale(1.05);
}

.img-section img {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* ===================== GALERÍA ===================== */
.espacio-creativo {
    padding: 5rem 1rem;
    background: radial-gradient(circle at center, rgba(59,147,68,0.2), rgba(0,0,0,0.9));
    text-align: center;
}

.espacio-creativo h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #eeb914;
    margin-bottom: 2rem;
}

.espacio-creativo p {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.7;
}

/* ===================== ANIMACIÓN ===================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.8s forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.4s; }
.fade-up:nth-child(3) { animation-delay: 0.6s; }

