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

/* ===== HERO ===== */
.page-sectores .hero-simple {
    position: relative;
    height: 60vh;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a3a2a 100%);
    overflow: hidden;
    padding: 0;
}

.page-sectores .hero-simple .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 80px 60px;
    text-align: center;
}

.page-sectores .hero-simple h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.page-sectores .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    line-height: 1.6;
    margin: 0 auto;
    text-transform: none;
    letter-spacing: 0;
}

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

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

.page-sectores .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-sectores .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-sectores .listing-card:hover {
    background: #1a3a2a;
}

.page-sectores .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-sectores .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-sectores .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-sectores .listing-card:hover .listing-card__arrow {
    color: #ffffff;
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-sectores .hero-simple .container {
        padding: 60px 24px 40px;
    }

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

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

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