/* NESAGAVIRIA - Parque (bloque compartido) */
/* ==========================
   SECCIÓN PARQUE MEMORIAL
   ========================== */

.pm-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5fbf7 0%, #ffffff 40%, #e8f5ee 100%);
}

.pm-layout {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .pm-layout {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    }
}

.pm-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background-color: #dcfce7;
    color: #166534;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.pm-intro h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    color: #042f2e;
}

.pm-intro p {
    color: #4b5563;
    line-height: 1.7;
    max-width: 36rem;
}

.pm-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 2.4rem 2rem;
    background: radial-gradient(circle at 0% 0%, #6ee7b7 0, #0f766e 40%, #042f2e 100%);
    color: #ecfdf5;
    box-shadow: 0 22px 45px rgba(15, 118, 110, 0.4);
}

.pm-hero-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    opacity: 0.2;
    background: radial-gradient(circle at 10% 0%, #bbf7d0, transparent 55%),
                radial-gradient(circle at 90% 100%, #a5f3fc, transparent 55%);
    pointer-events: none;
}

.pm-hero-card > * {
    position: relative;
    z-index: 1;
}

.pm-hero-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.pm-hero-text {
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
    max-width: 21rem;
}

.pm-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.pm-hero-list li::before {
    content: "●";
    display: inline-block;
    margin-right: 0.5rem;
    color: #bbf7d0;
}

.pm-grid {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.8rem;
}

.pm-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 1.9rem 1.6rem;
    border: 1px solid #e5f3ea;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
    border-color: #a7f3d0;
}

.pm-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #065f46;
}

.pm-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.pm-card li::before {
    content: "•";
    color: #16a34a;
    font-weight: bold;
    display: inline-block;
    width: 1.1rem;
}

.pm-acompanamiento {
    margin-top: 3rem;
}

.pm-acompanamiento-text {
    max-width: 40rem;
}

.pm-acompanamiento-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #064e3b;
}

.pm-acompanamiento-text p {
    color: #4b5563;
    line-height: 1.7;
}

.pm-cta {
    margin-top: 3rem;
    padding: 2.2rem 2rem;
    border-radius: 20px;
    background-color: #042f2e;
    color: #ecfdf5;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    align-items: flex-start;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .pm-cta {
        flex-direction: row;
        align-items: center;
    }
}

.pm-cta-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.pm-cta-text p {
    max-width: 30rem;
    font-size: 0.98rem;
}

.pm-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn.btn-secondary {
    background-color: transparent;
    border: 2px solid #22c55e;
    color: #bbf7d0;
    font-weight: 500;
}

.btn.btn-secondary:hover {
    background-color: #22c55e;
    color: #042f2e;
}

