/**
 * SOLUCIONES INDEX - Portocarrero Web Services
 * Dark hero + clean grid listing
 * Palette: #1a3a2a (dark green), #0a0a0a (black), white text
 */

/* ===== HERO ===== */
.page-soluciones .hero-simple {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a3a2a 100%);
    overflow: hidden;
    padding: 0 80px 120px;
}

.page-soluciones .hero-simple .container {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0;
    text-align: left;
}

.page-soluciones .hero-simple h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 32px 0;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.page-soluciones .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    max-width: 680px;
    line-height: 1.8;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

/* ===== LISTING GRID SECTION ===== */
.page-soluciones .listing-grid-section {
    background: #0a0a0a;
    padding: 100px 80px 140px;
}

.page-soluciones .listing-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-soluciones .listing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== LISTING CARD ===== */
.page-soluciones .listing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    background: #0a0a0a;
    text-decoration: none;
    transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 180px;
}

.page-soluciones .listing-card:hover {
    background: #1a3a2a;
}

.page-soluciones .listing-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.page-soluciones .listing-card__desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.page-soluciones .listing-card__arrow {
    display: inline-block;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    align-self: flex-end;
}

.page-soluciones .listing-card:hover .listing-card__arrow {
    color: #ffffff;
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-soluciones .hero-simple {
        padding: 0 24px 80px;
    }

    .page-soluciones .hero-simple .container {
        padding: 0;
    }

    .page-soluciones .listing-grid-section {
        padding: 60px 24px 100px;
    }

    .page-soluciones .listing-grid {
        grid-template-columns: 1fr;
    }

    .page-soluciones .listing-card {
        padding: 2rem 1.5rem;
        min-height: 140px;
    }
}
