.esp-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.esp-hero {
    background: #043259;
    padding: 40px 48px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.esp-hero-label {
    color: #B0D9CD;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
}

.esp-hero-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.esp-hero-subtitle {
    color: #B0D9CD;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

.esp-section {
    margin-bottom: 40px;
}

.esp-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.esp-section-bar {
    width: 3px;
    height: 20px;
    background: #036A6F;
    border-radius: 2px;
    flex-shrink: 0;
}

.esp-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #043259;
    margin: 0;
}

.esp-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.esp-category-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #ffffff;
    border: 0.5px solid #d0e8e9;
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.esp-category-card:hover {
    border-color: #036A6F;
    box-shadow: 0 2px 8px rgba(3, 106, 111, 0.12);
}

.esp-category-name {
    font-size: 14px;
    font-weight: 600;
    color: #043259;
}

.esp-category-count {
    font-size: 11px;
    color: #036A6F;
    background: #E8F4F5;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 500;
}

.esp-group {
    margin-bottom: 28px;
}

.esp-group-title {
    font-size: 13px;
    font-weight: 600;
    color: #036A6F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
    padding-bottom: 6px;
    border-bottom: 0.5px solid #d0e8e9;
}

.esp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.esp-pill {
    font-size: 13px;
    color: #036A6F;
    padding: 5px 14px;
    border: 0.5px solid #60A699;
    border-radius: 20px;
    text-decoration: none;
    background: #ffffff;
    transition: background 0.2s, color 0.2s;
}

.esp-pill:hover {
    background: #036A6F;
    color: #ffffff;
    border-color: #036A6F;
}

.esp-pueblos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}

.esp-pueblo-card {
    font-size: 13px;
    color: #043259;
    padding: 8px 12px;
    background: #ffffff;
    border: 0.5px solid #d0e8e9;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s;
}

.esp-pueblo-card:hover {
    border-color: #036A6F;
    color: #036A6F;
}

.esp-pueblo-dot {
    width: 6px;
    height: 6px;
    background: #036A6F;
    border-radius: 50%;
    flex-shrink: 0;
}

.esp-cta {
    background: #f0f9f9;
    border: 0.5px solid #d0e8e9;
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.esp-cta-title {
    font-size: 15px;
    font-weight: 600;
    color: #043259;
    margin: 0 0 4px 0;
}

.esp-cta-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.esp-cta-btn {
    font-size: 13px;
    color: #ffffff;
    background: #036A6F;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    transition: background 0.2s;
}

.esp-cta-btn:hover {
    background: #025559;
}

@media (max-width: 768px) {
    .esp-hero {
        padding: 28px 24px;
    }

    .esp-hero-title {
        font-size: 22px;
    }

    .esp-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .esp-pueblos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .esp-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .esp-cta-btn {
        width: 100%;
        text-align: center;
    }
}